From 217cf67ab5dcd3ce18816e26bdee98d18316f51a Mon Sep 17 00:00:00 2001 From: HRiggs Date: Wed, 11 Feb 2026 18:22:33 -0500 Subject: [PATCH] Inital Commit --- .gitignore | 1 + .../distribution/OFDistributionBlocker.lua | 527 + 42/mod.info | 8 + README.md | 84 +- common/media/lua/shared/OFBlockConfig.lua | 98 + .../media/lua/shared/OFBlockRules_Default.lua | 30 + common/media/lua/shared/OFBlockRules_User.lua | 33 + common/media/lua/shared/OFSourceCatalog.lua | 1836 + common/media/lua/shared/OFSpawnProfile.lua | 5 + data/OFSpawnProfile.generated.lua | 27 + data/ggs-spawn-catalog.json | 102537 +++++++++++++++ data/of-spawn-profile.sample.json | 47 + mod.info | 8 + tools/ggs-dist-cli.js | 352 + webapp/app.js | 557 + webapp/index.html | 77 + webapp/styles.css | 263 + 17 files changed, 106489 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 42/media/lua/server/distribution/OFDistributionBlocker.lua create mode 100644 42/mod.info create mode 100644 common/media/lua/shared/OFBlockConfig.lua create mode 100644 common/media/lua/shared/OFBlockRules_Default.lua create mode 100644 common/media/lua/shared/OFBlockRules_User.lua create mode 100644 common/media/lua/shared/OFSourceCatalog.lua create mode 100644 common/media/lua/shared/OFSpawnProfile.lua create mode 100644 data/OFSpawnProfile.generated.lua create mode 100644 data/ggs-spawn-catalog.json create mode 100644 data/of-spawn-profile.sample.json create mode 100644 mod.info create mode 100644 tools/ggs-dist-cli.js create mode 100644 webapp/app.js create mode 100644 webapp/index.html create mode 100644 webapp/styles.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..56f0bce --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +source/ \ No newline at end of file diff --git a/42/media/lua/server/distribution/OFDistributionBlocker.lua b/42/media/lua/server/distribution/OFDistributionBlocker.lua new file mode 100644 index 0000000..022a7f7 --- /dev/null +++ b/42/media/lua/server/distribution/OFDistributionBlocker.lua @@ -0,0 +1,527 @@ +require 'Items/ProceduralDistributions' +require 'Items/SuburbsDistributions' +require 'Items/ItemPicker' +pcall(require, 'Vehicles/VehicleDistributions') + +if _G.__OF_DISTRO_BLOCKER_REGISTERED then + return +end +_G.__OF_DISTRO_BLOCKER_REGISTERED = true + +local function safeRequire(moduleName) + local ok, result = pcall(require, moduleName) + if ok and type(result) == "table" then + return result + end + return {} +end + +local config = safeRequire("OFBlockConfig") +local spawnProfile = safeRequire("OFSpawnProfile") + +local function trim(value) + if type(value) ~= "string" then + return nil + end + return (value:gsub("^%s+", ""):gsub("%s+$", "")) +end + +local function normalizeItemType(value) + local s = trim(value) + if not s or s == "" then + return nil + end + if s:sub(1, 1) == "@" then + return s + end + if s:find("%.") then + return s + end + return "Base." .. s +end + +local function normalizePrefix(value) + local s = trim(value) + if not s or s == "" then + return nil + end + if s:sub(-1) == "*" then + s = s:sub(1, -2) + end + return s:lower() +end + +local function normalizeAliasName(value) + local s = trim(value) + if not s or s == "" then + return nil + end + if s:sub(1, 1) == "@" then + s = s:sub(2) + end + return s:lower() +end + +local function addAliasItems(outItems, outSeen, aliasMap, aliasName, visiting) + local key = normalizeAliasName(aliasName) + if not key or visiting[key] then + return + end + local values = aliasMap[key] + if type(values) ~= "table" then + return + end + + visiting[key] = true + for _, entry in ipairs(values) do + if type(entry) == "string" and entry:sub(1, 1) == "@" then + addAliasItems(outItems, outSeen, aliasMap, entry, visiting) + else + local normalized = normalizeItemType(entry) + if normalized and normalized:sub(1, 1) ~= "@" then + local lowered = normalized:lower() + if not outSeen[lowered] then + outSeen[lowered] = true + outItems[#outItems + 1] = lowered + end + end + end + end + visiting[key] = nil +end + +local function expandItems(rawItems, aliasMap) + local result = {} + local seen = {} + if type(rawItems) ~= "table" then + return result + end + + for _, entry in ipairs(rawItems) do + if type(entry) == "string" and entry:sub(1, 1) == "@" then + addAliasItems(result, seen, aliasMap, entry, {}) + else + local normalized = normalizeItemType(entry) + if normalized then + local lowered = normalized:lower() + if not seen[lowered] then + seen[lowered] = true + result[#result + 1] = lowered + end + end + end + end + + return result +end + +local function compileAliasMap(rawAliases) + local aliasMap = {} + if type(rawAliases) ~= "table" then + return aliasMap + end + for aliasName, list in pairs(rawAliases) do + local key = normalizeAliasName(aliasName) + if key then + aliasMap[key] = list + end + end + return aliasMap +end + +local function compileBlockMatcher(spec, aliasMap) + local matcher = { + items = {}, + prefixes = {}, + } + if type(spec) ~= "table" then + return matcher + end + + local expandedItems = expandItems(spec.items, aliasMap) + for _, lowered in ipairs(expandedItems) do + matcher.items[lowered] = true + end + + if type(spec.prefixes) == "table" then + for _, rawPrefix in ipairs(spec.prefixes) do + local prefix = normalizePrefix(rawPrefix) + if prefix then + matcher.prefixes[#matcher.prefixes + 1] = prefix + end + end + end + + return matcher +end + +local function itemMatches(itemTypeLower, matcher) + if matcher.items[itemTypeLower] then + return true + end + for _, prefix in ipairs(matcher.prefixes) do + if itemTypeLower:sub(1, #prefix) == prefix then + return true + end + end + return false +end + +local function compileListPatterns(raw) + if raw == nil or raw == "*" then + return nil + end + local patterns = {} + + local function addPattern(value) + local s = trim(value) + if not s or s == "" then + return + end + if s == "*" then + patterns = nil + return true + end + patterns[#patterns + 1] = s:lower() + return false + end + + if type(raw) == "string" then + addPattern(raw) + elseif type(raw) == "table" then + local source = raw.lists or raw + if type(source) == "string" then + addPattern(source) + elseif type(source) == "table" then + for _, value in ipairs(source) do + if addPattern(value) then + break + end + end + end + end + + return patterns +end + +local function listMatchesPattern(listNameLower, patternLower) + if not patternLower or patternLower == "" then + return false + end + + if patternLower:sub(-1) == "*" then + local prefix = patternLower:sub(1, -2) + return listNameLower:sub(1, #prefix) == prefix + end + + if listNameLower == patternLower then + return true + end + + return listNameLower:sub(-#patternLower - 1) == ("." .. patternLower) +end + +local function listMatches(listNameLower, patterns) + if not patterns then + return true + end + for _, pattern in ipairs(patterns) do + if listMatchesPattern(listNameLower, pattern) then + return true + end + end + return false +end + +local function compileRules(rawRules, aliasMap) + local compiled = {} + if type(rawRules) ~= "table" then + return compiled + end + + for _, rule in ipairs(rawRules) do + if type(rule) == "table" then + local whenBlock = rule.when or {} + compiled[#compiled + 1] = { + id = trim(rule.id) or "unnamed", + enabled = rule.enabled ~= false, + startsAt = tonumber(rule.startsAt or whenBlock.startsAt), + endsAt = tonumber(rule.endsAt or whenBlock.endsAt), + listPatterns = compileListPatterns(rule.where), + matcher = compileBlockMatcher(rule.block or rule, aliasMap), + } + end + end + + return compiled +end + +local aliasMap = compileAliasMap(config.aliases) +local globalMatcher = compileBlockMatcher(config.global, aliasMap) +local byListMatchers = {} +if type(config.byList) == "table" then + for listPattern, spec in pairs(config.byList) do + byListMatchers[#byListMatchers + 1] = { + pattern = trim(listPattern) and trim(listPattern):lower() or "", + matcher = compileBlockMatcher(spec, aliasMap), + } + end +end +local ruleMatchers = compileRules(config.rules, aliasMap) + +local function compileSpawnProfile(rawProfile) + local managedItemSet = {} + local placementsByList = {} + local managedCount = 0 + + local function addPlacement(listName, itemType, rawWeight) + local cleanList = trim(listName) + local weight = tonumber(rawWeight) + if not cleanList or cleanList == "" or not weight or weight <= 0 then + return + end + if not placementsByList[cleanList] then + placementsByList[cleanList] = {} + end + placementsByList[cleanList][itemType] = weight + end + + local function addEntry(itemTypeRaw, entry) + local normalized = normalizeItemType(itemTypeRaw) + if not normalized or normalized:sub(1, 1) == "@" then + return + end + + local lowered = normalized:lower() + if not managedItemSet[lowered] then + managedItemSet[lowered] = true + managedCount = managedCount + 1 + end + + if type(entry) ~= "table" then + return + end + + if entry.enabled == false then + return + end + + if type(entry.placements) == "table" then + if entry.placements[1] then + for _, row in ipairs(entry.placements) do + if type(row) == "table" then + addPlacement(row.list, normalized, row.weight) + end + end + else + for listName, weight in pairs(entry.placements) do + addPlacement(listName, normalized, weight) + end + end + end + end + + if type(rawProfile) == "table" then + if type(rawProfile.items) == "table" then + for itemType, entry in pairs(rawProfile.items) do + addEntry(itemType, entry) + end + end + + if type(rawProfile.entries) == "table" then + for _, entry in ipairs(rawProfile.entries) do + if type(entry) == "table" then + addEntry(entry.item, entry) + end + end + end + end + + return managedItemSet, placementsByList, managedCount +end + +local managedSpawnItems, profilePlacementsByList, managedSpawnItemCount = compileSpawnProfile(spawnProfile) + +local function isRuleActive(rule, nowEpoch) + if not rule.enabled then + return false + end + if (rule.startsAt or rule.endsAt) and not nowEpoch then + return false + end + if rule.startsAt and nowEpoch < rule.startsAt then + return false + end + if rule.endsAt and nowEpoch > rule.endsAt then + return false + end + return true +end + +local function shouldBlock(listName, itemType, nowEpoch) + local listLower = (trim(listName) or "unknown"):lower() + local itemLower = normalizeItemType(itemType) + if not itemLower then + return false + end + itemLower = itemLower:lower() + + if managedSpawnItems[itemLower] then + return true + end + + if itemMatches(itemLower, globalMatcher) then + return true + end + + for _, entry in ipairs(byListMatchers) do + if entry.pattern ~= "" and listMatchesPattern(listLower, entry.pattern) and itemMatches(itemLower, entry.matcher) then + return true + end + end + + for _, rule in ipairs(ruleMatchers) do + if isRuleActive(rule, nowEpoch) and listMatches(listLower, rule.listPatterns) and itemMatches(itemLower, rule.matcher) then + return true + end + end + + return false +end + +local function removeBlockedEntries(items, listName, nowEpoch) + if type(items) ~= "table" then + return 0 + end + + local removed = 0 + local i = 1 + while i <= #items do + local itemType = items[i] + if type(itemType) == "string" then + if shouldBlock(listName, itemType, nowEpoch) then + table.remove(items, i) + if i <= #items then + table.remove(items, i) + end + removed = removed + 1 + else + i = i + 2 + end + else + i = i + 1 + end + end + + return removed +end + +local function patchProceduralDistributions(nowEpoch) + local removed = 0 + local pd = ProceduralDistributions and ProceduralDistributions.list + if type(pd) ~= "table" then + return 0 + end + + for listName, listDef in pairs(pd) do + if type(listDef) == "table" then + removed = removed + removeBlockedEntries(listDef.items, listName, nowEpoch) + if type(listDef.junk) == "table" then + removed = removed + removeBlockedEntries(listDef.junk.items, listName, nowEpoch) + end + end + end + + return removed +end + +local function patchNestedDistributionTree(rootName, rootTable, nowEpoch) + if type(rootTable) ~= "table" then + return 0 + end + + local removed = 0 + local visited = {} + + local function walk(node, path) + if type(node) ~= "table" or visited[node] then + return + end + visited[node] = true + + if type(node.items) == "table" then + removed = removed + removeBlockedEntries(node.items, path, nowEpoch) + end + + if type(node.junk) == "table" and type(node.junk.items) == "table" then + removed = removed + removeBlockedEntries(node.junk.items, path, nowEpoch) + end + + for key, value in pairs(node) do + if key ~= "items" and type(value) == "table" then + local keyName = type(key) == "string" and key or tostring(key) + local nextPath = path .. "." .. keyName + walk(value, nextPath) + end + end + end + + walk(rootTable, rootName) + return removed +end + +local function ensureProceduralList(listName) + local pd = ProceduralDistributions and ProceduralDistributions.list + if type(pd) ~= "table" then + return nil + end + if type(pd[listName]) ~= "table" then + pd[listName] = { + rolls = 2, + items = {}, + junk = { rolls = 1, items = {} }, + } + end + if type(pd[listName].items) ~= "table" then + pd[listName].items = {} + end + return pd[listName] +end + +local function applyProfilePlacements() + local added = 0 + for listName, entries in pairs(profilePlacementsByList) do + local listDef = ensureProceduralList(listName) + if listDef then + for itemType, weight in pairs(entries) do + table.insert(listDef.items, itemType) + table.insert(listDef.items, weight) + added = added + 1 + end + end + end + return added +end + +local function patchAllDistributions() + local nowEpoch = nil + if os and os.time then + nowEpoch = os.time() + end + + local removed = 0 + removed = removed + patchProceduralDistributions(nowEpoch) + removed = removed + patchNestedDistributionTree("SuburbsDistributions", SuburbsDistributions, nowEpoch) + removed = removed + patchNestedDistributionTree("VehicleDistributions", VehicleDistributions, nowEpoch) + local added = applyProfilePlacements() + + if ItemPickerJava and ItemPickerJava.Parse then + ItemPickerJava.Parse() + end + + print(string.format("[OFDistributionBlocker] Removed %d entries and added %d profile entries (managed items: %d).", removed, added, managedSpawnItemCount)) +end + +Events.OnInitWorld.Add(patchAllDistributions) +Events.OnLoadMapZones.Add(patchAllDistributions) +Events.OnGameStart.Add(patchAllDistributions) diff --git a/42/mod.info b/42/mod.info new file mode 100644 index 0000000..f87a759 --- /dev/null +++ b/42/mod.info @@ -0,0 +1,8 @@ +name=Opinionated Firearms +id=opinionated_firearms +author=Riggs0 +modversion=1.0.0 +versionMin=42.12.13 +require=GaelGunStore_ALPHA + +description=Opinionated Firearms spawn distribution controller for GaelGunStore (B42). diff --git a/README.md b/README.md index 593277d..4429857 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,84 @@ -# OpinionatedFirearms +# Opinionated Firearms +Project Zomboid B42 patch mod + tooling for managing `GaelGunStore` firearm/attachment spawn distribution. + +## Workflow + +1. Use CLI `extract` to build a JSON catalog from GGS source (`loot.lua` + scripts). +2. Load that catalog JSON in the webapp. +3. In the webapp, choose per item: +- spawn enabled/disabled +- where it should spawn (distribution list) +- spawn rate weight +4. Export a profile JSON from the webapp. +5. Use CLI `apply` to convert the profile JSON into `OFSpawnProfile.lua`. +6. Start Project Zomboid with this mod + `GaelGunStore_ALPHA`. + +## CLI + +Script: `tools/ggs-dist-cli.js` + +### Extract catalog + +```powershell +node tools/ggs-dist-cli.js extract --ggs-root source/GaelGunStore/42 --out data/ggs-spawn-catalog.json +``` + +Output contains: + +- all firearms/attachments from GGS scripts +- where they spawn (`list`) +- base spawn weight (`weight`) +- sandbox key (`sv`) used by GGS spawn multipliers + +### Apply webapp profile + +```powershell +node tools/ggs-dist-cli.js apply --profile data/of-spawn-profile.json --out common/media/lua/shared/OFSpawnProfile.lua +``` + +This writes the Lua profile the mod reads at runtime. + +## Webapp + +Path: `webapp/index.html` + +Serve locally (recommended): + +```powershell +python -m http.server 8080 +# open http://localhost:8080/webapp/ +``` + +Features: + +- import extracted catalog JSON +- import existing profile JSON +- filter/search full item list +- toggle per-item spawn enabled +- edit per-list placements and weights +- export profile JSON for CLI `apply` + +## Runtime mod behavior + +Main patcher: `42/media/lua/server/distribution/OFDistributionBlocker.lua` + +- loads block rules (`OFBlockConfig`) and spawn profile (`OFSpawnProfile`) +- removes blocked/managed entries from distributions +- re-adds managed item placements with chosen weights from spawn profile +- reparses ItemPicker after patching + +## Files + +- `mod.info` +- `42/mod.info` +- `42/media/lua/server/distribution/OFDistributionBlocker.lua` +- `common/media/lua/shared/OFSpawnProfile.lua` +- `common/media/lua/shared/OFBlockConfig.lua` +- `common/media/lua/shared/OFBlockRules_Default.lua` +- `common/media/lua/shared/OFBlockRules_User.lua` +- `common/media/lua/shared/OFSourceCatalog.lua` +- `tools/ggs-dist-cli.js` +- `webapp/index.html` +- `webapp/styles.css` +- `webapp/app.js` diff --git a/common/media/lua/shared/OFBlockConfig.lua b/common/media/lua/shared/OFBlockConfig.lua new file mode 100644 index 0000000..bc3f895 --- /dev/null +++ b/common/media/lua/shared/OFBlockConfig.lua @@ -0,0 +1,98 @@ +local function safeRequire(moduleName) + local ok, result = pcall(require, moduleName) + if ok and type(result) == "table" then + return result + end + return {} +end + +local function appendArray(target, source) + if type(source) ~= "table" then + return + end + for _, value in ipairs(source) do + target[#target + 1] = value + end +end + +local function mergeSpec(baseSpec, extraSpec) + local merged = { + items = {}, + prefixes = {}, + } + + if type(baseSpec) == "table" then + appendArray(merged.items, baseSpec.items) + appendArray(merged.prefixes, baseSpec.prefixes) + end + + if type(extraSpec) == "table" then + appendArray(merged.items, extraSpec.items) + appendArray(merged.prefixes, extraSpec.prefixes) + end + + return merged +end + +local function mergeAliasTables(baseAliases, extraAliases) + local merged = {} + if type(baseAliases) == "table" then + for key, list in pairs(baseAliases) do + merged[key] = merged[key] or {} + appendArray(merged[key], list) + end + end + if type(extraAliases) == "table" then + for key, list in pairs(extraAliases) do + merged[key] = merged[key] or {} + appendArray(merged[key], list) + end + end + return merged +end + +local function mergeRuleTables(baseRules, extraRules) + local merged = {} + appendArray(merged, baseRules) + appendArray(merged, extraRules) + return merged +end + +local function mergeByList(baseByList, extraByList) + local merged = {} + + if type(baseByList) == "table" then + for listName, spec in pairs(baseByList) do + merged[listName] = mergeSpec(nil, spec) + end + end + + if type(extraByList) == "table" then + for listName, spec in pairs(extraByList) do + merged[listName] = mergeSpec(merged[listName], spec) + end + end + + return merged +end + +local defaults = safeRequire("OFBlockRules_Default") +local user = safeRequire("OFBlockRules_User") +local sourceCatalog = safeRequire("OFSourceCatalog") + +local aliasCatalog = { + firearms = sourceCatalog.firearms or {}, + attachments = sourceCatalog.attachments or {}, + ggs_all = sourceCatalog.ggs_all or {}, +} + +local merged = { + global = mergeSpec(defaults.global, user.global), + byList = mergeByList(defaults.byList, user.byList), + rules = mergeRuleTables(defaults.rules, user.rules), + aliases = mergeAliasTables(defaults.aliases, user.aliases), +} + +merged.aliases = mergeAliasTables(aliasCatalog, merged.aliases) + +return merged diff --git a/common/media/lua/shared/OFBlockRules_Default.lua b/common/media/lua/shared/OFBlockRules_Default.lua new file mode 100644 index 0000000..5a5b08f --- /dev/null +++ b/common/media/lua/shared/OFBlockRules_Default.lua @@ -0,0 +1,30 @@ +-- Default rule set for Opinionated Firearms distribution blocking. +-- Keep this empty for a clean-slate baseline. +return { + global = { + items = {}, + prefixes = {}, + }, + byList = { + -- Example: + -- GunStorePistols = { items = { "Base.AA12" } }, + }, + rules = { + -- Example rule: + -- { + -- id = "weekend-attachment-ban", + -- enabled = false, + -- where = { lists = { "GunStorePistols", "PoliceStorageGuns" } }, + -- when = { startsAt = 1762473600, endsAt = 1762732800 }, -- unix epoch UTC + -- block = { + -- items = { "@attachments" }, + -- prefixes = { "Base.Clip_" }, + -- }, + -- }, + }, + aliases = { + -- Additional custom aliases can be added here. + -- Example: + -- police_vote_list = { "Base.AA12", "Base.AK47" }, + }, +} diff --git a/common/media/lua/shared/OFBlockRules_User.lua b/common/media/lua/shared/OFBlockRules_User.lua new file mode 100644 index 0000000..ba2904d --- /dev/null +++ b/common/media/lua/shared/OFBlockRules_User.lua @@ -0,0 +1,33 @@ +-- User-editable rules. +-- The web app can overwrite this file with vote results later. +return { + global = { + items = { + -- "Base.AA12", + -- "@attachments", + }, + prefixes = { + -- "Base.Clip_", + }, + }, + byList = { + -- PoliceStorageGuns = { + -- items = { "Base.AK47" }, + -- }, + }, + rules = { + -- { + -- id = "example-scheduled-block", + -- enabled = false, + -- where = { lists = { "GunStorePistols", "ArmyStorageGuns" } }, + -- when = { startsAt = 1762473600, endsAt = 1762732800 }, -- unix epoch UTC + -- block = { + -- items = { "Base.AK74u", "@firearms" }, + -- prefixes = { "Base.Clip_" }, + -- }, + -- }, + }, + aliases = { + -- event_list = { "Base.AK74", "Base.AK47" }, + }, +} diff --git a/common/media/lua/shared/OFSourceCatalog.lua b/common/media/lua/shared/OFSourceCatalog.lua new file mode 100644 index 0000000..bd6ab16 --- /dev/null +++ b/common/media/lua/shared/OFSourceCatalog.lua @@ -0,0 +1,1836 @@ +-- Generated from source/GaelGunStore/42/media/scripts/Firearms and GunPartItem. +-- Used as aliases for block rules: @firearms, @attachments, @ggs_all. +return { + firearms = { + 'Base.A2000', + 'Base.A91', + 'Base.AA12', + 'Base.ACE21', + 'Base.ACE23', + 'Base.ACE52_CQB', + 'Base.ACE53', + 'Base.ACR', + 'Base.ADS', + 'Base.AEK', + 'Base.AEK919', + 'Base.AK_minidrako', + 'Base.AK101', + 'Base.AK103', + 'Base.AK12', + 'Base.AK19', + 'Base.AK47', + 'Base.AK5C', + 'Base.AK74', + 'Base.AK74u', + 'Base.AK74u_long', + 'Base.AK9', + 'Base.AKM', + 'Base.AKU12', + 'Base.AMD65', + 'Base.AN94', + 'Base.Anaconda', + 'Base.APC9K', + 'Base.AR10', + 'Base.AR15', + 'Base.AR160', + 'Base.AR6951', + 'Base.ASH_12', + 'Base.AssaultRifle', + 'Base.AssaultRifle2', + 'Base.AUG_9mm', + 'Base.AUG_A1', + 'Base.AUG_A2', + 'Base.Automag357', + 'Base.Automag44', + 'Base.Automag50AE', + 'Base.AWS', + 'Base.BAR', + 'Base.Becker_Shotgun', + 'Base.Becker_Shotgun_Short', + 'Base.BenelliM4', + 'Base.Beretta_A400', + 'Base.Beretta_A400_Short', + 'Base.Beretta_PX4', + 'Base.Browning_Auto', + 'Base.Browning_Auto_Short', + 'Base.BrowningHP', + 'Base.Carcano', + 'Base.CarcanoCarbine1891', + 'Base.CBJ', + 'Base.CeiRigotti', + 'Base.CETME', + 'Base.CircuitJudgeRifle', + 'Base.Colt9mm', + 'Base.ColtNavy1851', + 'Base.ColtNavyExorcist', + 'Base.ColtPeacemaker1873', + 'Base.Coonan357', + 'Base.CS5', + 'Base.CZ75', + 'Base.CZ805', + 'Base.CZScorpion', + 'Base.DB_Condor', + 'Base.DB_Condor_sawn', + 'Base.DDM4', + 'Base.Deagle357_gold', + 'Base.Deagle50AE', + 'Base.DeagleCar14', + 'Base.DeLisle', + 'Base.DoubleBarrelShotgun', + 'Base.DoubleBarrelShotgunSawnoff', + 'Base.DVB15', + 'Base.ENARM_Pentagun', + 'Base.Enfield', + 'Base.Enfield1917', + 'Base.FAL', + 'Base.FAL_CQB', + 'Base.FAMAS', + 'Base.FiveSeven', + 'Base.FN2000', + 'Base.FN502_22LR', + 'Base.FNX45', + 'Base.G17', + 'Base.G18', + 'Base.G2', + 'Base.G27', + 'Base.G36C', + 'Base.G3A3', + 'Base.G43', + 'Base.Galil', + 'Base.Glock_tactical', + 'Base.Glock23', + 'Base.Glock43', + 'Base.GOL', + 'Base.Grizzly50AE', + 'Base.Groza', + 'Base.GSH18', + 'Base.HK_121', + 'Base.HK416', + 'Base.HKG28', + 'Base.HKMK23', + 'Base.HoneyBadger', + 'Base.HuntingRifle', + 'Base.IA2', + 'Base.IA2_308', + 'Base.Jackhammer', + 'Base.Jericho941', + 'Base.JNG90', + 'Base.K2', + 'Base.K7', + 'Base.KAC_PDW', + 'Base.Kark98', + 'Base.Kimber1911', + 'Base.Kriss9mm', + 'Base.KrissVector45', + 'Base.KS23', + 'Base.KSG', + 'Base.L115A', + 'Base.L85', + 'Base.L86', + 'Base.L96', + 'Base.LanchesterMK1', + 'Base.Lewis', + 'Base.LR300', + 'Base.LSAT', + 'Base.LVOA', + 'Base.M1', + 'Base.M110', + 'Base.M16A2', + 'Base.M1887', + 'Base.M1887_Short', + 'Base.M1A1', + 'Base.M200', + 'Base.M21', + 'Base.M24', + 'Base.M240B', + 'Base.M249', + 'Base.M39', + 'Base.M4', + 'Base.M40', + 'Base.M60E4', + 'Base.M620', + 'Base.M82A3', + 'Base.M9_Samurai', + 'Base.M93R', + 'Base.M98B', + 'Base.MAB38A', + 'Base.MAC10', + 'Base.MannlicherM1895', + 'Base.MannlicherM1895_long', + 'Base.MartiniHenry', + 'Base.MAS36', + 'Base.MAT49', + 'Base.MatebaGrifone', + 'Base.Mauser98', + 'Base.MG131', + 'Base.MG4', + 'Base.MG42', + 'Base.MG710', + 'Base.Micro_UZI', + 'Base.Mini_14', + 'Base.Minimi', + 'Base.MK18', + 'Base.Mosin', + 'Base.MosinNagant1891', + 'Base.Mossber500', + 'Base.Mossber590', + 'Base.MP_R8', + 'Base.MP18', + 'Base.MP1911', + 'Base.MP40', + 'Base.MP5', + 'Base.MP5K', + 'Base.MP5SD', + 'Base.MP7', + 'Base.MP9', + 'Base.MPX', + 'Base.MSST', + 'Base.MTAR', + 'Base.MTS_255', + 'Base.MTS_255_Short', + 'Base.MX4', + 'Base.Nagant_M1895', + 'Base.Negev', + 'Base.OTS_33', + 'Base.P220', + 'Base.P220_Elite', + 'Base.P228', + 'Base.P90', + 'Base.P99', + 'Base.P99_Kilin', + 'Base.PB6P9', + 'Base.Pistol', + 'Base.pistol_shotgun', + 'Base.Pistol2', + 'Base.Pistol3', + 'Base.PKP', + 'Base.PP_Bizon', + 'Base.PP2000', + 'Base.PP93', + 'Base.PPSH41', + 'Base.Python357', + 'Base.QBA', + 'Base.QBB95', + 'Base.QBS09', + 'Base.QBS09_Short', + 'Base.QBZ951', + 'Base.R5', + 'Base.Remington1100', + 'Base.Remington1100_Short', + 'Base.Remington121', + 'Base.Remington870', + 'Base.Remington870_Short', + 'Base.Revolver', + 'Base.Revolver_long', + 'Base.Revolver_short', + 'Base.Revolver38', + 'Base.Revolver666', + 'Base.Rhino20DS', + 'Base.RMB93', + 'Base.RossMK3', + 'Base.RPD', + 'Base.RPK', + 'Base.RPK12', + 'Base.RPK16', + 'Base.RSH12', + 'Base.Ruger10_22', + 'Base.Ruger357', + 'Base.RugerLC', + 'Base.SA58', + 'Base.Saiga12', + 'Base.Saiga9mm', + 'Base.Samurai_aw', + 'Base.Samurai_kendo', + 'Base.SAR21', + 'Base.ScarH', + 'Base.ScarL', + 'Base.Schofield1875', + 'Base.Scout_elite', + 'Base.ScrapRevolver', + 'Base.Shorty', + 'Base.Shotgun', + 'Base.ShotgunSawnoff', + 'Base.SIG_553', + 'Base.SIG516', + 'Base.Silenced_Sten', + 'Base.Sjorgen', + 'Base.Sjorgen_Short', + 'Base.SKS', + 'Base.SKS_carbine', + 'Base.SKS_carbine_short', + 'Base.Snub22LR', + 'Base.SPAS12', + 'Base.SPAS15', + 'Base.Springfield_sniper', + 'Base.Springfield1903', + 'Base.SR1M', + 'Base.SR338', + 'Base.SR3M', + 'Base.SR47', + 'Base.SS2V5', + 'Base.Sten_MK5', + 'Base.Striker', + 'Base.SV98', + 'Base.SVD', + 'Base.SVD_short', + 'Base.SVD12', + 'Base.SVDK', + 'Base.SVDK_short', + 'Base.SVT_40', + 'Base.SVU', + 'Base.SW1905', + 'Base.SW1917', + 'Base.SW500', + 'Base.SW629', + 'Base.SWM1854', + 'Base.SWM1894', + 'Base.SWM3', + 'Base.SWM327', + 'Base.SWM629_Deluxe', + 'Base.SWMP_12', + 'Base.TankgewehrM1918', + 'Base.Taurus_raging_bull', + 'Base.Taurus_raging_bull460', + 'Base.Taurus_RT85', + 'Base.Taurus606', + 'Base.TEC9', + 'Base.Thompson', + 'Base.TMP', + 'Base.Type81', + 'Base.Type88', + 'Base.UMP45', + 'Base.UMP45_long', + 'Base.USAS12', + 'Base.USP45', + 'Base.UZI', + 'Base.V_M87', + 'Base.ValmetM82', + 'Base.VarmintRifle', + 'Base.VEPR', + 'Base.Veresk', + 'Base.VictorySW22', + 'Base.VP70', + 'Base.VR80', + 'Base.VSK', + 'Base.VSS', + 'Base.VSS_Tactical', + 'Base.VSSK', + 'Base.VZ58', + 'Base.VZ61', + 'Base.WA2000', + 'Base.Walther_P38', + 'Base.Webley_MK_snub', + 'Base.Webley_Revolver', + 'Base.Wieger940', + 'Base.Wildey', + 'Base.Winchester1886', + 'Base.Winchester1895', + 'Base.Winchester1897', + 'Base.X86', + 'Base.XD', + 'Base.XM8', + }, + attachments = { + 'Base.1P78', + 'Base.1PN93_4', + 'Base.9x39_Silencer', + 'Base.A2000_Silencer', + 'Base.Accupoint', + 'Base.Acog_ecos', + 'Base.Acog_TA648', + 'Base.ACOGx4', + 'Base.aek_Silencer', + 'Base.ak_hg_545_design', + 'Base.ak_hg_cnc', + 'Base.ak_hg_cugir', + 'Base.ak_hg_hexagon', + 'Base.ak_hg_krebs', + 'Base.ak_hg_magpul_moe', + 'Base.ak_hg_magpul_zhukov', + 'Base.ak_hg_quad', + 'Base.ak_hg_rail', + 'Base.ak_hg_std', + 'Base.ak_hg_vltor', + 'Base.ak_mount_kobra', + 'Base.ak_mount_sag', + 'Base.ak_mount_vpo', + 'Base.ak_mount_xd_rgl', + 'Base.ak_stock_archangel', + 'Base.ak_stock_fab', + 'Base.ak_stock_fold', + 'Base.ak_stock_hera', + 'Base.ak_stock_hexagon', + 'Base.ak_stock_wrapped', + 'Base.ak_stock_zenit_magpul', + 'Base.ak_stock_zenit_pt_1', + 'Base.ak_stock_zenit_pt_3', + 'Base.AK_Wood_stock', + 'Base.AK12_stock', + 'Base.AK19_stock', + 'Base.AK47_stock', + 'Base.ak74_std_plastic', + 'Base.AK74_stock', + 'Base.ak74_stock_plum', + 'Base.ak74m_stock_std', + 'Base.AK74u_stock', + 'Base.AK9_stock', + 'Base.AKHGtactical', + 'Base.AkHGwood', + 'Base.AkMount', + 'Base.aks74_stock', + 'Base.aluminum_skeletonized', + 'Base.AMD65_stock', + 'Base.AN94_stock', + 'Base.AngleGrip', + 'Base.ANPEQ_10', + 'Base.ANPEQ_10_BEAM', + 'Base.ANPEQ_2', + 'Base.ANPEQ_2_BEAM', + 'Base.AR_handguard', + 'Base.ar10_hg_cmmg_mk3_rml15', + 'Base.ar10_hg_cmmg_mk3_rml9', + 'Base.ar10_hg_kac_urx4_14', + 'Base.ar10_hg_lancer_12', + 'Base.ar10_hg_noveske_quadrail', + 'Base.AR10_stock', + 'Base.ar15_adar_stock', + 'Base.ar15_armacon_stock', + 'Base.ar15_b5_stock', + 'Base.ar15_doublestar_stock', + 'Base.ar15_f93_stock', + 'Base.ar15_fab_defense_16s_stock', + 'Base.ar15_fab_defense_core_stock', + 'Base.ar15_fab_defense_shock_stock', + 'Base.AR15_handguard', + 'Base.ar15_hg_adar_wood', + 'Base.ar15_hg_aeroknox_10', + 'Base.ar15_hg_aeroknox_15', + 'Base.ar15_hg_alexander', + 'Base.ar15_hg_geissele_13', + 'Base.ar15_hg_geissele_9', + 'Base.ar15_hg_lone_star_16', + 'Base.ar15_hg_lvoa_c', + 'Base.ar15_hg_lvoa_s', + 'Base.ar15_hg_magpul_carabine', + 'Base.ar15_hg_magpul_moe', + 'Base.ar15_hg_reflex_carbon', + 'Base.ar15_hg_ris_fsp_9', + 'Base.ar15_hg_rsass', + 'Base.ar15_hg_stngr_vypr_10', + 'Base.ar15_high_standart_stock', + 'Base.ar15_lmt_sopmod_stock', + 'Base.ar15_magpul_gen2_fde_stock', + 'Base.ar15_magpul_gen2_stock', + 'Base.ar15_magpul_gen3_stock', + 'Base.ar15_magpul_prs_gen2_fde_stock', + 'Base.ar15_mft_stock', + 'Base.ar15_ripstock_stock', + 'Base.ar15_sba3_stock', + 'Base.AR15_stock', + 'Base.ar15_troy_pdw_stock_blk', + 'Base.ar15_troy_pdw_stock_fde', + 'Base.ar15_viper_mod1_stock', + 'Base.ar15_viper_pdw_stock', + 'Base.ar15_vltor_emod_stock', + 'Base.ar15_wing_and_skull_12', + 'Base.ATN_Thor', + 'Base.ax_base_pad', + 'Base.BaldrPro', + 'Base.BaldrPro_BEAM', + 'Base.BallisticScope', + 'Base.bcm', + 'Base.bipod_harris', + 'Base.bipod_harris_open', + 'Base.Bravo4', + 'Base.ChokeTubeFull', + 'Base.ChokeTubeImproved', + 'Base.Clip_12GClip', + 'Base.Clip_12GClip14', + 'Base.Clip_12GDrum24', + 'Base.Clip_22LRClip', + 'Base.Clip_22LRClip50', + 'Base.Clip_22LRDrum100', + 'Base.Clip_308Box150', + 'Base.Clip_308Clip', + 'Base.Clip_308Clip40', + 'Base.Clip_308Drum100', + 'Base.Clip_308Drum60', + 'Base.Clip_357Clip', + 'Base.Clip_357Drum45', + 'Base.Clip_44Clip', + 'Base.Clip_44Clip20', + 'Base.Clip_44Drum50', + 'Base.Clip_45Clip', + 'Base.Clip_45Clip25', + 'Base.Clip_45Clip30old', + 'Base.Clip_45Drum100', + 'Base.Clip_45Drum50', + 'Base.Clip_45Drum60old', + 'Base.Clip_50Clip', + 'Base.Clip_50Clip18', + 'Base.Clip_50MagnumClip', + 'Base.Clip_50MagnumClip18', + 'Base.Clip_50MagnumDrum40', + 'Base.Clip_545x39Clip30', + 'Base.Clip_545x39Clip60', + 'Base.Clip_545x39Drum100', + 'Base.Clip_556Box150', + 'Base.Clip_556Clip', + 'Base.Clip_556Drum_100rnd', + 'Base.Clip_556Drum_60rnd', + 'Base.Clip_762x39Clip', + 'Base.Clip_762x39Clip45', + 'Base.Clip_762x39Drum100', + 'Base.Clip_762x39Drum73', + 'Base.Clip_762x54rBox150', + 'Base.Clip_762x54rClip', + 'Base.Clip_762x54rClip40', + 'Base.Clip_792x57Box75', + 'Base.Clip_792x57Box97', + 'Base.Clip_792x57Clip', + 'Base.Clip_9mmClip', + 'Base.Clip_9mmClip100old', + 'Base.Clip_9mmClip30', + 'Base.Clip_9mmClip30old', + 'Base.Clip_9mmClip50old', + 'Base.Clip_9mmDrum100', + 'Base.Clip_9mmDrum50', + 'Base.Clip_9mmDrum75', + 'Base.Clip_9x39Clip', + 'Base.Clip_9x39Clip40', + 'Base.Clip_9x39Drum60', + 'Base.Clip_A2000', + 'Base.Clip_A91', + 'Base.Clip_AA12', + 'Base.Clip_ACE21', + 'Base.Clip_ACE23', + 'Base.Clip_ACE52_CQB', + 'Base.Clip_ACE53', + 'Base.Clip_ACR', + 'Base.Clip_ADS', + 'Base.Clip_AEK', + 'Base.Clip_AEK919', + 'Base.Clip_AK_minidrako', + 'Base.Clip_AK101', + 'Base.Clip_AK103', + 'Base.Clip_AK12', + 'Base.Clip_AK19', + 'Base.Clip_AK47', + 'Base.Clip_AK5C', + 'Base.Clip_AK74', + 'Base.Clip_AK74u', + 'Base.Clip_AK74u_long', + 'Base.Clip_AK9', + 'Base.Clip_AKM', + 'Base.Clip_AKU12', + 'Base.Clip_AM65', + 'Base.Clip_AMD65', + 'Base.Clip_AN94', + 'Base.Clip_APC9K', + 'Base.Clip_AR10', + 'Base.Clip_AR15', + 'Base.Clip_AR160', + 'Base.Clip_AR47', + 'Base.Clip_AR6951', + 'Base.Clip_ASH_12', + 'Base.Clip_AssaultRifle', + 'Base.Clip_AssaultRifle2', + 'Base.Clip_AUG_9mm', + 'Base.Clip_AUG_A1', + 'Base.Clip_AUG_A2', + 'Base.Clip_Automag357', + 'Base.Clip_Automag44', + 'Base.Clip_Automag50AE', + 'Base.Clip_AWS', + 'Base.Clip_BAR', + 'Base.Clip_Beretta_PX4', + 'Base.Clip_BizonClip64', + 'Base.Clip_BrowningHP', + 'Base.Clip_CBJ', + 'Base.Clip_CETME', + 'Base.Clip_Colt9mm', + 'Base.Clip_Coonan357', + 'Base.Clip_CS5', + 'Base.Clip_CZ75', + 'Base.Clip_CZ805', + 'Base.Clip_CZScorpion', + 'Base.Clip_DDM4', + 'Base.Clip_Deagle357_gold', + 'Base.Clip_Deagle50AE', + 'Base.Clip_DeagleCar14', + 'Base.Clip_DeLisle', + 'Base.Clip_DVB15', + 'Base.Clip_FAL', + 'Base.Clip_FAL_CQB', + 'Base.Clip_FAMAS', + 'Base.Clip_FiveSeven', + 'Base.Clip_FN2000', + 'Base.Clip_FN502_22LR', + 'Base.Clip_FNX45', + 'Base.Clip_G17', + 'Base.Clip_G18', + 'Base.Clip_G2', + 'Base.Clip_G27', + 'Base.Clip_G36C', + 'Base.Clip_G3A3', + 'Base.Clip_G43', + 'Base.Clip_Galil', + 'Base.Clip_Glock_tactical', + 'Base.Clip_Glock23', + 'Base.Clip_Glock43', + 'Base.Clip_GOL', + 'Base.Clip_Grizzly50AE', + 'Base.Clip_Groza', + 'Base.Clip_GSH18', + 'Base.Clip_HK_121', + 'Base.Clip_HK416', + 'Base.Clip_HKG28', + 'Base.Clip_HKMK23', + 'Base.Clip_HoneyBadger', + 'Base.Clip_HuntingRifle', + 'Base.Clip_IA2', + 'Base.Clip_IA2_308', + 'Base.Clip_Jericho941', + 'Base.Clip_JNG90', + 'Base.Clip_K2', + 'Base.Clip_K7', + 'Base.Clip_KAC_PDW', + 'Base.Clip_Kimber1911', + 'Base.Clip_Kriss9mm', + 'Base.Clip_KrissVector45', + 'Base.Clip_L115A', + 'Base.Clip_L85', + 'Base.Clip_L86', + 'Base.Clip_L96', + 'Base.Clip_LanchesterMK1', + 'Base.Clip_Lewis', + 'Base.Clip_LR300', + 'Base.Clip_LSAT', + 'Base.Clip_LVOA', + 'Base.Clip_M1', + 'Base.Clip_M110', + 'Base.Clip_M16A2', + 'Base.Clip_M1A1', + 'Base.Clip_M200', + 'Base.Clip_M21', + 'Base.Clip_M24', + 'Base.Clip_M240B', + 'Base.Clip_M249', + 'Base.Clip_M39', + 'Base.Clip_M4', + 'Base.Clip_M40', + 'Base.Clip_M60E4', + 'Base.Clip_M82A3', + 'Base.Clip_M9_Samurai', + 'Base.Clip_M93R', + 'Base.Clip_M98', + 'Base.Clip_M98B', + 'Base.Clip_MAB38A', + 'Base.Clip_MAC10', + 'Base.Clip_MAT49', + 'Base.Clip_MG4', + 'Base.Clip_MG42', + 'Base.Clip_MG710', + 'Base.Clip_Micro_UZI', + 'Base.Clip_Mini_14', + 'Base.Clip_Minimi', + 'Base.Clip_MK18', + 'Base.Clip_MP18', + 'Base.Clip_MP40', + 'Base.Clip_MP5', + 'Base.Clip_MP5K', + 'Base.Clip_MP5SD', + 'Base.Clip_MP7', + 'Base.Clip_MP9', + 'Base.Clip_MPX', + 'Base.Clip_MSST', + 'Base.Clip_MTAR', + 'Base.Clip_MX4', + 'Base.Clip_Negev', + 'Base.Clip_OTS_33', + 'Base.Clip_P220', + 'Base.Clip_P220_Elite', + 'Base.Clip_P228', + 'Base.Clip_P38', + 'Base.Clip_P90', + 'Base.Clip_P90Clip', + 'Base.Clip_P99', + 'Base.Clip_P99_kilin', + 'Base.Clip_PB6P9', + 'Base.Clip_Pistol', + 'Base.Clip_pistol_shotgun', + 'Base.Clip_Pistol2', + 'Base.Clip_Pistol3', + 'Base.Clip_PKP', + 'Base.Clip_PP_Bizon', + 'Base.Clip_PP2000', + 'Base.Clip_PP93', + 'Base.Clip_PPSH41', + 'Base.Clip_QBA', + 'Base.Clip_QBB95', + 'Base.Clip_QBZ951', + 'Base.Clip_R5', + 'Base.Clip_RPD', + 'Base.Clip_RPK', + 'Base.Clip_RPK12', + 'Base.Clip_RPK16', + 'Base.Clip_Ruger10_22', + 'Base.Clip_RugerLC', + 'Base.Clip_SA58', + 'Base.Clip_Saiga12', + 'Base.Clip_Saiga9mm', + 'Base.Clip_Samurai_aw', + 'Base.Clip_Samurai_kendo', + 'Base.Clip_SAR21', + 'Base.Clip_ScarH', + 'Base.Clip_ScarL', + 'Base.Clip_Scout_elite', + 'Base.Clip_SIG_553', + 'Base.Clip_SIG516', + 'Base.Clip_Silenced_Sten', + 'Base.Clip_SKS', + 'Base.Clip_SPAS15', + 'Base.Clip_Springfield_sniper', + 'Base.Clip_SR1M', + 'Base.Clip_SR338', + 'Base.Clip_SR3M', + 'Base.Clip_SR47', + 'Base.Clip_SS2V5', + 'Base.Clip_Sten_MK5', + 'Base.Clip_SV98', + 'Base.Clip_SVD', + 'Base.Clip_SVD_short', + 'Base.Clip_SVD12', + 'Base.Clip_SVDK', + 'Base.Clip_SVDK_short', + 'Base.Clip_SVT_40', + 'Base.Clip_SVU', + 'Base.Clip_TEC9', + 'Base.Clip_Thompson', + 'Base.Clip_TMP', + 'Base.Clip_Type81', + 'Base.Clip_Type88', + 'Base.Clip_UMP45', + 'Base.Clip_UMP45_long', + 'Base.Clip_USAS12', + 'Base.Clip_USP45', + 'Base.Clip_UZI', + 'Base.Clip_V_M87', + 'Base.Clip_ValmetM82', + 'Base.Clip_VEPR', + 'Base.Clip_Veresk', + 'Base.Clip_VictorySW22', + 'Base.Clip_VP70', + 'Base.Clip_VR80', + 'Base.Clip_VSK', + 'Base.Clip_VSS', + 'Base.Clip_VSS_Tactical', + 'Base.Clip_VSSK', + 'Base.Clip_VZ58', + 'Base.Clip_VZ61', + 'Base.Clip_WA2000', + 'Base.Clip_Wieger940', + 'Base.Clip_Wildey', + 'Base.Clip_X86', + 'Base.Clip_XD', + 'Base.Clip_XM8', + 'Base.cobra_tactical', + 'Base.Comp_M4', + 'Base.Compact4x', + 'Base.Cover_Silencer', + 'Base.Cover2_Silencer', + 'Base.Cover3_Silencer', + 'Base.Cover4_Silencer', + 'Base.Coyote', + 'Base.CP1', + 'Base.CrimsonRedDot', + 'Base.DBAL_A2', + 'Base.DBAL_A2_BEAM', + 'Base.Dbal9021', + 'Base.Dbal9021_BEAM', + 'Base.Deltapoint', + 'Base.Dtkp_Hexagon_Silencer', + 'Base.Dtkp_Silencer', + 'Base.EKP_kobra', + 'Base.EKP_kobra_2x', + 'Base.Elcan_M145', + 'Base.Eotech', + 'Base.Eotech_vudu', + 'Base.Eotech_XPS3', + 'Base.fortis_shift', + 'Base.GP30_GL', + 'Base.GP30_GL_empty', + 'Base.Grip_Surefire_blk', + 'Base.Grip_Surefire_tan', + 'Base.GripPod', + 'Base.GunCamo', + 'Base.GunLight', + 'Base.HAMR', + 'Base.hera_arms', + 'Base.Hexagon_12G_Suppressor', + 'Base.hk_sturmgriff', + 'Base.InsightLA5', + 'Base.InsightLA5_BEAM', + 'Base.InsightWMX200', + 'Base.IRNV', + 'Base.kac_vertical_grip', + 'Base.keymod_sig', + 'Base.keymod_sig_vertical', + 'Base.keymod_vertical', + 'Base.Kobra', + 'Base.Kriss9mm_Silencer', + 'Base.Leapers_UTG3', + 'Base.Luty_stock', + 'Base.m_lok_magpul', + 'Base.M1014_stock', + 'Base.M16_handguard', + 'Base.m16_hg_launcher', + 'Base.M16_stock', + 'Base.M16A2_handguard', + 'Base.M203_GL', + 'Base.M203_GL_empty', + 'Base.M320_GL', + 'Base.M320_GL_empty', + 'Base.M600P', + 'Base.M962LT', + 'Base.magpul_afg', + 'Base.magpul_rvg', + 'Base.MicroT1', + 'Base.MiniRedDot', + 'Base.Mosin_carlo_stock', + 'Base.Mosin_Mount', + 'Base.Mosin_Wood_short_stock', + 'Base.Mosin_Wood_stock', + 'Base.Mossberg_grip', + 'Base.mount_rail', + 'Base.MP155_montecarlo_stock', + 'Base.MP18_plastic_stock', + 'Base.Ncstar_laser', + 'Base.Ncstar_laser_BEAM', + 'Base.NST_Silencer', + 'Base.OilFilter_Silencer', + 'Base.OKP7', + 'Base.Osprey_Silencer', + 'Base.OTS_33_pistol_stock', + 'Base.PBS1_Silencer', + 'Base.PBS4_Silencer', + 'Base.PEQ15', + 'Base.PEQ15_BEAM', + 'Base.PistolScope', + 'Base.pk_stock_plastic', + 'Base.pk_stock_wood', + 'Base.PKA', + 'Base.PM_IILP', + 'Base.POSP', + 'Base.POSP4x24', + 'Base.PotatoGrip', + 'Base.PP93_Silencer', + 'Base.R870_grip', + 'Base.R870_magpul_stock', + 'Base.R870_sps_stock', + 'Base.R870_Tactical_Grip', + 'Base.R870_Tactical_Grip_short', + 'Base.R870_Wood_Grip', + 'Base.R870_Wood_stock', + 'Base.RB7M_Mount', + 'Base.RDS', + 'Base.RedDot', + 'Base.Romeo3', + 'Base.rtm_pillau', + 'Base.RX01', + 'Base.Saiga9_Silencer', + 'Base.Salvo_12G_Suppressor', + 'Base.Scar_GL', + 'Base.Scar_GL_empty', + 'Base.Scar_pdw_stock', + 'Base.Scar_ssr_stock', + 'Base.Scar_stock', + 'Base.scrap_bipod', + 'Base.scrap_bipod_open', + 'Base.scrap_grip_drill', + 'Base.scrap_grip_screwdriver', + 'Base.scrap_mount', + 'Base.scrap_mount_shotgun', + 'Base.scrap_pipe_suppressor', + 'Base.Scrap_Silencer', + 'Base.scrap_stock', + 'Base.ShellHolder', + 'Base.SigSauerRomeo3', + 'Base.SLDG', + 'Base.SMG_Silencer', + 'Base.SodaCan_Silencer', + 'Base.Spectre', + 'Base.SprayCan_Silencer', + 'Base.Springfield_longrange_scope', + 'Base.stark_se', + 'Base.SteinerTac2', + 'Base.stock_pistol_fab', + 'Base.sup2', + 'Base.Suppx_Silencer', + 'Base.Surefire_light', + 'Base.Surefire_M925', + 'Base.SurefireX400', + 'Base.SurefireX400_BEAM', + 'Base.SUSAT', + 'Base.svd_handguard_xrs_drg', + 'Base.svd_hg_plastic', + 'Base.svd_hg_wood', + 'Base.svd_stock_wood', + 'Base.tango_down', + 'Base.TestAccessory', + 'Base.TGP_Silencer', + 'Base.TMP_Silencer', + 'Base.TritiumSights', + 'Base.TruBrite', + 'Base.Type81_stock', + 'Base.UniversalMount', + 'Base.VenomRDS', + 'Base.VortexRedDot', + 'Base.VP70_pistol_stock', + 'Base.VSS_stock_Tactical', + 'Base.VSS_stock_wood', + 'Base.vtac_uvg', + 'Base.VZ58_stock', + 'Base.WaterBottle_ductaped', + 'Base.Wieger940_folding', + 'Base.Wieger940_stock', + 'Base.win_1886_hg_wood', + 'Base.win_1886_stock_wood', + 'Base.win_1895_stock', + 'Base.win_archangel_handguard', + 'Base.win_archangel_stock', + 'Base.win_m1887_grip', + 'Base.win_m1887_stock', + 'Base.win_mts_stock', + 'Base.win_sjorgen_stock', + 'Base.win_SWM1854_hg_wood', + 'Base.win_SWM1854_stock_wood', + 'Base.win_swm1894_handguard', + 'Base.win_swm1894_stock', + 'Base.x2Scope', + 'Base.x4Scope', + 'Base.x8Scope', + 'Base.ZaMiniRDS', + 'Base.Zeiss4x25', + 'Base.zenit_b25u', + 'Base.zenit_rk_1', + 'Base.zenit_rk_5', + 'Base.zenit_rk6', + 'Base.Zenit2P', + }, + ggs_all = { + 'Base.1P78', + 'Base.1PN93_4', + 'Base.9x39_Silencer', + 'Base.A2000', + 'Base.A2000_Silencer', + 'Base.A91', + 'Base.AA12', + 'Base.Accupoint', + 'Base.ACE21', + 'Base.ACE23', + 'Base.ACE52_CQB', + 'Base.ACE53', + 'Base.Acog_ecos', + 'Base.Acog_TA648', + 'Base.ACOGx4', + 'Base.ACR', + 'Base.ADS', + 'Base.AEK', + 'Base.aek_Silencer', + 'Base.AEK919', + 'Base.ak_hg_545_design', + 'Base.ak_hg_cnc', + 'Base.ak_hg_cugir', + 'Base.ak_hg_hexagon', + 'Base.ak_hg_krebs', + 'Base.ak_hg_magpul_moe', + 'Base.ak_hg_magpul_zhukov', + 'Base.ak_hg_quad', + 'Base.ak_hg_rail', + 'Base.ak_hg_std', + 'Base.ak_hg_vltor', + 'Base.AK_minidrako', + 'Base.ak_mount_kobra', + 'Base.ak_mount_sag', + 'Base.ak_mount_vpo', + 'Base.ak_mount_xd_rgl', + 'Base.ak_stock_archangel', + 'Base.ak_stock_fab', + 'Base.ak_stock_fold', + 'Base.ak_stock_hera', + 'Base.ak_stock_hexagon', + 'Base.ak_stock_wrapped', + 'Base.ak_stock_zenit_magpul', + 'Base.ak_stock_zenit_pt_1', + 'Base.ak_stock_zenit_pt_3', + 'Base.AK_Wood_stock', + 'Base.AK101', + 'Base.AK103', + 'Base.AK12', + 'Base.AK12_stock', + 'Base.AK19', + 'Base.AK19_stock', + 'Base.AK47', + 'Base.AK47_stock', + 'Base.AK5C', + 'Base.AK74', + 'Base.ak74_std_plastic', + 'Base.AK74_stock', + 'Base.ak74_stock_plum', + 'Base.ak74m_stock_std', + 'Base.AK74u', + 'Base.AK74u_long', + 'Base.AK74u_stock', + 'Base.AK9', + 'Base.AK9_stock', + 'Base.AKHGtactical', + 'Base.AkHGwood', + 'Base.AKM', + 'Base.AkMount', + 'Base.aks74_stock', + 'Base.AKU12', + 'Base.aluminum_skeletonized', + 'Base.AMD65', + 'Base.AMD65_stock', + 'Base.AN94', + 'Base.AN94_stock', + 'Base.Anaconda', + 'Base.AngleGrip', + 'Base.ANPEQ_10', + 'Base.ANPEQ_10_BEAM', + 'Base.ANPEQ_2', + 'Base.ANPEQ_2_BEAM', + 'Base.APC9K', + 'Base.AR_handguard', + 'Base.AR10', + 'Base.ar10_hg_cmmg_mk3_rml15', + 'Base.ar10_hg_cmmg_mk3_rml9', + 'Base.ar10_hg_kac_urx4_14', + 'Base.ar10_hg_lancer_12', + 'Base.ar10_hg_noveske_quadrail', + 'Base.AR10_stock', + 'Base.AR15', + 'Base.ar15_adar_stock', + 'Base.ar15_armacon_stock', + 'Base.ar15_b5_stock', + 'Base.ar15_doublestar_stock', + 'Base.ar15_f93_stock', + 'Base.ar15_fab_defense_16s_stock', + 'Base.ar15_fab_defense_core_stock', + 'Base.ar15_fab_defense_shock_stock', + 'Base.AR15_handguard', + 'Base.ar15_hg_adar_wood', + 'Base.ar15_hg_aeroknox_10', + 'Base.ar15_hg_aeroknox_15', + 'Base.ar15_hg_alexander', + 'Base.ar15_hg_geissele_13', + 'Base.ar15_hg_geissele_9', + 'Base.ar15_hg_lone_star_16', + 'Base.ar15_hg_lvoa_c', + 'Base.ar15_hg_lvoa_s', + 'Base.ar15_hg_magpul_carabine', + 'Base.ar15_hg_magpul_moe', + 'Base.ar15_hg_reflex_carbon', + 'Base.ar15_hg_ris_fsp_9', + 'Base.ar15_hg_rsass', + 'Base.ar15_hg_stngr_vypr_10', + 'Base.ar15_high_standart_stock', + 'Base.ar15_lmt_sopmod_stock', + 'Base.ar15_magpul_gen2_fde_stock', + 'Base.ar15_magpul_gen2_stock', + 'Base.ar15_magpul_gen3_stock', + 'Base.ar15_magpul_prs_gen2_fde_stock', + 'Base.ar15_mft_stock', + 'Base.ar15_ripstock_stock', + 'Base.ar15_sba3_stock', + 'Base.AR15_stock', + 'Base.ar15_troy_pdw_stock_blk', + 'Base.ar15_troy_pdw_stock_fde', + 'Base.ar15_viper_mod1_stock', + 'Base.ar15_viper_pdw_stock', + 'Base.ar15_vltor_emod_stock', + 'Base.ar15_wing_and_skull_12', + 'Base.AR160', + 'Base.AR6951', + 'Base.ASH_12', + 'Base.AssaultRifle', + 'Base.AssaultRifle2', + 'Base.ATN_Thor', + 'Base.AUG_9mm', + 'Base.AUG_A1', + 'Base.AUG_A2', + 'Base.Automag357', + 'Base.Automag44', + 'Base.Automag50AE', + 'Base.AWS', + 'Base.ax_base_pad', + 'Base.BaldrPro', + 'Base.BaldrPro_BEAM', + 'Base.BallisticScope', + 'Base.BAR', + 'Base.bcm', + 'Base.Becker_Shotgun', + 'Base.Becker_Shotgun_Short', + 'Base.BenelliM4', + 'Base.Beretta_A400', + 'Base.Beretta_A400_Short', + 'Base.Beretta_PX4', + 'Base.bipod_harris', + 'Base.bipod_harris_open', + 'Base.Bravo4', + 'Base.Browning_Auto', + 'Base.Browning_Auto_Short', + 'Base.BrowningHP', + 'Base.Carcano', + 'Base.CarcanoCarbine1891', + 'Base.CBJ', + 'Base.CeiRigotti', + 'Base.CETME', + 'Base.ChokeTubeFull', + 'Base.ChokeTubeImproved', + 'Base.CircuitJudgeRifle', + 'Base.Clip_12GClip', + 'Base.Clip_12GClip14', + 'Base.Clip_12GDrum24', + 'Base.Clip_22LRClip', + 'Base.Clip_22LRClip50', + 'Base.Clip_22LRDrum100', + 'Base.Clip_308Box150', + 'Base.Clip_308Clip', + 'Base.Clip_308Clip40', + 'Base.Clip_308Drum100', + 'Base.Clip_308Drum60', + 'Base.Clip_357Clip', + 'Base.Clip_357Drum45', + 'Base.Clip_44Clip', + 'Base.Clip_44Clip20', + 'Base.Clip_44Drum50', + 'Base.Clip_45Clip', + 'Base.Clip_45Clip25', + 'Base.Clip_45Clip30old', + 'Base.Clip_45Drum100', + 'Base.Clip_45Drum50', + 'Base.Clip_45Drum60old', + 'Base.Clip_50Clip', + 'Base.Clip_50Clip18', + 'Base.Clip_50MagnumClip', + 'Base.Clip_50MagnumClip18', + 'Base.Clip_50MagnumDrum40', + 'Base.Clip_545x39Clip30', + 'Base.Clip_545x39Clip60', + 'Base.Clip_545x39Drum100', + 'Base.Clip_556Box150', + 'Base.Clip_556Clip', + 'Base.Clip_556Drum_100rnd', + 'Base.Clip_556Drum_60rnd', + 'Base.Clip_762x39Clip', + 'Base.Clip_762x39Clip45', + 'Base.Clip_762x39Drum100', + 'Base.Clip_762x39Drum73', + 'Base.Clip_762x54rBox150', + 'Base.Clip_762x54rClip', + 'Base.Clip_762x54rClip40', + 'Base.Clip_792x57Box75', + 'Base.Clip_792x57Box97', + 'Base.Clip_792x57Clip', + 'Base.Clip_9mmClip', + 'Base.Clip_9mmClip100old', + 'Base.Clip_9mmClip30', + 'Base.Clip_9mmClip30old', + 'Base.Clip_9mmClip50old', + 'Base.Clip_9mmDrum100', + 'Base.Clip_9mmDrum50', + 'Base.Clip_9mmDrum75', + 'Base.Clip_9x39Clip', + 'Base.Clip_9x39Clip40', + 'Base.Clip_9x39Drum60', + 'Base.Clip_A2000', + 'Base.Clip_A91', + 'Base.Clip_AA12', + 'Base.Clip_ACE21', + 'Base.Clip_ACE23', + 'Base.Clip_ACE52_CQB', + 'Base.Clip_ACE53', + 'Base.Clip_ACR', + 'Base.Clip_ADS', + 'Base.Clip_AEK', + 'Base.Clip_AEK919', + 'Base.Clip_AK_minidrako', + 'Base.Clip_AK101', + 'Base.Clip_AK103', + 'Base.Clip_AK12', + 'Base.Clip_AK19', + 'Base.Clip_AK47', + 'Base.Clip_AK5C', + 'Base.Clip_AK74', + 'Base.Clip_AK74u', + 'Base.Clip_AK74u_long', + 'Base.Clip_AK9', + 'Base.Clip_AKM', + 'Base.Clip_AKU12', + 'Base.Clip_AM65', + 'Base.Clip_AMD65', + 'Base.Clip_AN94', + 'Base.Clip_APC9K', + 'Base.Clip_AR10', + 'Base.Clip_AR15', + 'Base.Clip_AR160', + 'Base.Clip_AR47', + 'Base.Clip_AR6951', + 'Base.Clip_ASH_12', + 'Base.Clip_AssaultRifle', + 'Base.Clip_AssaultRifle2', + 'Base.Clip_AUG_9mm', + 'Base.Clip_AUG_A1', + 'Base.Clip_AUG_A2', + 'Base.Clip_Automag357', + 'Base.Clip_Automag44', + 'Base.Clip_Automag50AE', + 'Base.Clip_AWS', + 'Base.Clip_BAR', + 'Base.Clip_Beretta_PX4', + 'Base.Clip_BizonClip64', + 'Base.Clip_BrowningHP', + 'Base.Clip_CBJ', + 'Base.Clip_CETME', + 'Base.Clip_Colt9mm', + 'Base.Clip_Coonan357', + 'Base.Clip_CS5', + 'Base.Clip_CZ75', + 'Base.Clip_CZ805', + 'Base.Clip_CZScorpion', + 'Base.Clip_DDM4', + 'Base.Clip_Deagle357_gold', + 'Base.Clip_Deagle50AE', + 'Base.Clip_DeagleCar14', + 'Base.Clip_DeLisle', + 'Base.Clip_DVB15', + 'Base.Clip_FAL', + 'Base.Clip_FAL_CQB', + 'Base.Clip_FAMAS', + 'Base.Clip_FiveSeven', + 'Base.Clip_FN2000', + 'Base.Clip_FN502_22LR', + 'Base.Clip_FNX45', + 'Base.Clip_G17', + 'Base.Clip_G18', + 'Base.Clip_G2', + 'Base.Clip_G27', + 'Base.Clip_G36C', + 'Base.Clip_G3A3', + 'Base.Clip_G43', + 'Base.Clip_Galil', + 'Base.Clip_Glock_tactical', + 'Base.Clip_Glock23', + 'Base.Clip_Glock43', + 'Base.Clip_GOL', + 'Base.Clip_Grizzly50AE', + 'Base.Clip_Groza', + 'Base.Clip_GSH18', + 'Base.Clip_HK_121', + 'Base.Clip_HK416', + 'Base.Clip_HKG28', + 'Base.Clip_HKMK23', + 'Base.Clip_HoneyBadger', + 'Base.Clip_HuntingRifle', + 'Base.Clip_IA2', + 'Base.Clip_IA2_308', + 'Base.Clip_Jericho941', + 'Base.Clip_JNG90', + 'Base.Clip_K2', + 'Base.Clip_K7', + 'Base.Clip_KAC_PDW', + 'Base.Clip_Kimber1911', + 'Base.Clip_Kriss9mm', + 'Base.Clip_KrissVector45', + 'Base.Clip_L115A', + 'Base.Clip_L85', + 'Base.Clip_L86', + 'Base.Clip_L96', + 'Base.Clip_LanchesterMK1', + 'Base.Clip_Lewis', + 'Base.Clip_LR300', + 'Base.Clip_LSAT', + 'Base.Clip_LVOA', + 'Base.Clip_M1', + 'Base.Clip_M110', + 'Base.Clip_M16A2', + 'Base.Clip_M1A1', + 'Base.Clip_M200', + 'Base.Clip_M21', + 'Base.Clip_M24', + 'Base.Clip_M240B', + 'Base.Clip_M249', + 'Base.Clip_M39', + 'Base.Clip_M4', + 'Base.Clip_M40', + 'Base.Clip_M60E4', + 'Base.Clip_M82A3', + 'Base.Clip_M9_Samurai', + 'Base.Clip_M93R', + 'Base.Clip_M98', + 'Base.Clip_M98B', + 'Base.Clip_MAB38A', + 'Base.Clip_MAC10', + 'Base.Clip_MAT49', + 'Base.Clip_MG4', + 'Base.Clip_MG42', + 'Base.Clip_MG710', + 'Base.Clip_Micro_UZI', + 'Base.Clip_Mini_14', + 'Base.Clip_Minimi', + 'Base.Clip_MK18', + 'Base.Clip_MP18', + 'Base.Clip_MP40', + 'Base.Clip_MP5', + 'Base.Clip_MP5K', + 'Base.Clip_MP5SD', + 'Base.Clip_MP7', + 'Base.Clip_MP9', + 'Base.Clip_MPX', + 'Base.Clip_MSST', + 'Base.Clip_MTAR', + 'Base.Clip_MX4', + 'Base.Clip_Negev', + 'Base.Clip_OTS_33', + 'Base.Clip_P220', + 'Base.Clip_P220_Elite', + 'Base.Clip_P228', + 'Base.Clip_P38', + 'Base.Clip_P90', + 'Base.Clip_P90Clip', + 'Base.Clip_P99', + 'Base.Clip_P99_kilin', + 'Base.Clip_PB6P9', + 'Base.Clip_Pistol', + 'Base.Clip_pistol_shotgun', + 'Base.Clip_Pistol2', + 'Base.Clip_Pistol3', + 'Base.Clip_PKP', + 'Base.Clip_PP_Bizon', + 'Base.Clip_PP2000', + 'Base.Clip_PP93', + 'Base.Clip_PPSH41', + 'Base.Clip_QBA', + 'Base.Clip_QBB95', + 'Base.Clip_QBZ951', + 'Base.Clip_R5', + 'Base.Clip_RPD', + 'Base.Clip_RPK', + 'Base.Clip_RPK12', + 'Base.Clip_RPK16', + 'Base.Clip_Ruger10_22', + 'Base.Clip_RugerLC', + 'Base.Clip_SA58', + 'Base.Clip_Saiga12', + 'Base.Clip_Saiga9mm', + 'Base.Clip_Samurai_aw', + 'Base.Clip_Samurai_kendo', + 'Base.Clip_SAR21', + 'Base.Clip_ScarH', + 'Base.Clip_ScarL', + 'Base.Clip_Scout_elite', + 'Base.Clip_SIG_553', + 'Base.Clip_SIG516', + 'Base.Clip_Silenced_Sten', + 'Base.Clip_SKS', + 'Base.Clip_SPAS15', + 'Base.Clip_Springfield_sniper', + 'Base.Clip_SR1M', + 'Base.Clip_SR338', + 'Base.Clip_SR3M', + 'Base.Clip_SR47', + 'Base.Clip_SS2V5', + 'Base.Clip_Sten_MK5', + 'Base.Clip_SV98', + 'Base.Clip_SVD', + 'Base.Clip_SVD_short', + 'Base.Clip_SVD12', + 'Base.Clip_SVDK', + 'Base.Clip_SVDK_short', + 'Base.Clip_SVT_40', + 'Base.Clip_SVU', + 'Base.Clip_TEC9', + 'Base.Clip_Thompson', + 'Base.Clip_TMP', + 'Base.Clip_Type81', + 'Base.Clip_Type88', + 'Base.Clip_UMP45', + 'Base.Clip_UMP45_long', + 'Base.Clip_USAS12', + 'Base.Clip_USP45', + 'Base.Clip_UZI', + 'Base.Clip_V_M87', + 'Base.Clip_ValmetM82', + 'Base.Clip_VEPR', + 'Base.Clip_Veresk', + 'Base.Clip_VictorySW22', + 'Base.Clip_VP70', + 'Base.Clip_VR80', + 'Base.Clip_VSK', + 'Base.Clip_VSS', + 'Base.Clip_VSS_Tactical', + 'Base.Clip_VSSK', + 'Base.Clip_VZ58', + 'Base.Clip_VZ61', + 'Base.Clip_WA2000', + 'Base.Clip_Wieger940', + 'Base.Clip_Wildey', + 'Base.Clip_X86', + 'Base.Clip_XD', + 'Base.Clip_XM8', + 'Base.cobra_tactical', + 'Base.Colt9mm', + 'Base.ColtNavy1851', + 'Base.ColtNavyExorcist', + 'Base.ColtPeacemaker1873', + 'Base.Comp_M4', + 'Base.Compact4x', + 'Base.Coonan357', + 'Base.Cover_Silencer', + 'Base.Cover2_Silencer', + 'Base.Cover3_Silencer', + 'Base.Cover4_Silencer', + 'Base.Coyote', + 'Base.CP1', + 'Base.CrimsonRedDot', + 'Base.CS5', + 'Base.CZ75', + 'Base.CZ805', + 'Base.CZScorpion', + 'Base.DB_Condor', + 'Base.DB_Condor_sawn', + 'Base.DBAL_A2', + 'Base.DBAL_A2_BEAM', + 'Base.Dbal9021', + 'Base.Dbal9021_BEAM', + 'Base.DDM4', + 'Base.Deagle357_gold', + 'Base.Deagle50AE', + 'Base.DeagleCar14', + 'Base.DeLisle', + 'Base.Deltapoint', + 'Base.DoubleBarrelShotgun', + 'Base.DoubleBarrelShotgunSawnoff', + 'Base.Dtkp_Hexagon_Silencer', + 'Base.Dtkp_Silencer', + 'Base.DVB15', + 'Base.EKP_kobra', + 'Base.EKP_kobra_2x', + 'Base.Elcan_M145', + 'Base.ENARM_Pentagun', + 'Base.Enfield', + 'Base.Enfield1917', + 'Base.Eotech', + 'Base.Eotech_vudu', + 'Base.Eotech_XPS3', + 'Base.FAL', + 'Base.FAL_CQB', + 'Base.FAMAS', + 'Base.FiveSeven', + 'Base.FN2000', + 'Base.FN502_22LR', + 'Base.FNX45', + 'Base.fortis_shift', + 'Base.G17', + 'Base.G18', + 'Base.G2', + 'Base.G27', + 'Base.G36C', + 'Base.G3A3', + 'Base.G43', + 'Base.Galil', + 'Base.Glock_tactical', + 'Base.Glock23', + 'Base.Glock43', + 'Base.GOL', + 'Base.GP30_GL', + 'Base.GP30_GL_empty', + 'Base.Grip_Surefire_blk', + 'Base.Grip_Surefire_tan', + 'Base.GripPod', + 'Base.Grizzly50AE', + 'Base.Groza', + 'Base.GSH18', + 'Base.GunCamo', + 'Base.GunLight', + 'Base.HAMR', + 'Base.hera_arms', + 'Base.Hexagon_12G_Suppressor', + 'Base.HK_121', + 'Base.hk_sturmgriff', + 'Base.HK416', + 'Base.HKG28', + 'Base.HKMK23', + 'Base.HoneyBadger', + 'Base.HuntingRifle', + 'Base.IA2', + 'Base.IA2_308', + 'Base.InsightLA5', + 'Base.InsightLA5_BEAM', + 'Base.InsightWMX200', + 'Base.IRNV', + 'Base.Jackhammer', + 'Base.Jericho941', + 'Base.JNG90', + 'Base.K2', + 'Base.K7', + 'Base.KAC_PDW', + 'Base.kac_vertical_grip', + 'Base.Kark98', + 'Base.keymod_sig', + 'Base.keymod_sig_vertical', + 'Base.keymod_vertical', + 'Base.Kimber1911', + 'Base.Kobra', + 'Base.Kriss9mm', + 'Base.Kriss9mm_Silencer', + 'Base.KrissVector45', + 'Base.KS23', + 'Base.KSG', + 'Base.L115A', + 'Base.L85', + 'Base.L86', + 'Base.L96', + 'Base.LanchesterMK1', + 'Base.Leapers_UTG3', + 'Base.Lewis', + 'Base.LR300', + 'Base.LSAT', + 'Base.Luty_stock', + 'Base.LVOA', + 'Base.m_lok_magpul', + 'Base.M1', + 'Base.M1014_stock', + 'Base.M110', + 'Base.M16_handguard', + 'Base.m16_hg_launcher', + 'Base.M16_stock', + 'Base.M16A2', + 'Base.M16A2_handguard', + 'Base.M1887', + 'Base.M1887_Short', + 'Base.M1A1', + 'Base.M200', + 'Base.M203_GL', + 'Base.M203_GL_empty', + 'Base.M21', + 'Base.M24', + 'Base.M240B', + 'Base.M249', + 'Base.M320_GL', + 'Base.M320_GL_empty', + 'Base.M39', + 'Base.M4', + 'Base.M40', + 'Base.M600P', + 'Base.M60E4', + 'Base.M620', + 'Base.M82A3', + 'Base.M9_Samurai', + 'Base.M93R', + 'Base.M962LT', + 'Base.M98B', + 'Base.MAB38A', + 'Base.MAC10', + 'Base.magpul_afg', + 'Base.magpul_rvg', + 'Base.MannlicherM1895', + 'Base.MannlicherM1895_long', + 'Base.MartiniHenry', + 'Base.MAS36', + 'Base.MAT49', + 'Base.MatebaGrifone', + 'Base.Mauser98', + 'Base.MG131', + 'Base.MG4', + 'Base.MG42', + 'Base.MG710', + 'Base.Micro_UZI', + 'Base.MicroT1', + 'Base.Mini_14', + 'Base.Minimi', + 'Base.MiniRedDot', + 'Base.MK18', + 'Base.Mosin', + 'Base.Mosin_carlo_stock', + 'Base.Mosin_Mount', + 'Base.Mosin_Wood_short_stock', + 'Base.Mosin_Wood_stock', + 'Base.MosinNagant1891', + 'Base.Mossber500', + 'Base.Mossber590', + 'Base.Mossberg_grip', + 'Base.mount_rail', + 'Base.MP_R8', + 'Base.MP155_montecarlo_stock', + 'Base.MP18', + 'Base.MP18_plastic_stock', + 'Base.MP1911', + 'Base.MP40', + 'Base.MP5', + 'Base.MP5K', + 'Base.MP5SD', + 'Base.MP7', + 'Base.MP9', + 'Base.MPX', + 'Base.MSST', + 'Base.MTAR', + 'Base.MTS_255', + 'Base.MTS_255_Short', + 'Base.MX4', + 'Base.Nagant_M1895', + 'Base.Ncstar_laser', + 'Base.Ncstar_laser_BEAM', + 'Base.Negev', + 'Base.NST_Silencer', + 'Base.OilFilter_Silencer', + 'Base.OKP7', + 'Base.Osprey_Silencer', + 'Base.OTS_33', + 'Base.OTS_33_pistol_stock', + 'Base.P220', + 'Base.P220_Elite', + 'Base.P228', + 'Base.P90', + 'Base.P99', + 'Base.P99_Kilin', + 'Base.PB6P9', + 'Base.PBS1_Silencer', + 'Base.PBS4_Silencer', + 'Base.PEQ15', + 'Base.PEQ15_BEAM', + 'Base.Pistol', + 'Base.pistol_shotgun', + 'Base.Pistol2', + 'Base.Pistol3', + 'Base.PistolScope', + 'Base.pk_stock_plastic', + 'Base.pk_stock_wood', + 'Base.PKA', + 'Base.PKP', + 'Base.PM_IILP', + 'Base.POSP', + 'Base.POSP4x24', + 'Base.PotatoGrip', + 'Base.PP_Bizon', + 'Base.PP2000', + 'Base.PP93', + 'Base.PP93_Silencer', + 'Base.PPSH41', + 'Base.Python357', + 'Base.QBA', + 'Base.QBB95', + 'Base.QBS09', + 'Base.QBS09_Short', + 'Base.QBZ951', + 'Base.R5', + 'Base.R870_grip', + 'Base.R870_magpul_stock', + 'Base.R870_sps_stock', + 'Base.R870_Tactical_Grip', + 'Base.R870_Tactical_Grip_short', + 'Base.R870_Wood_Grip', + 'Base.R870_Wood_stock', + 'Base.RB7M_Mount', + 'Base.RDS', + 'Base.RedDot', + 'Base.Remington1100', + 'Base.Remington1100_Short', + 'Base.Remington121', + 'Base.Remington870', + 'Base.Remington870_Short', + 'Base.Revolver', + 'Base.Revolver_long', + 'Base.Revolver_short', + 'Base.Revolver38', + 'Base.Revolver666', + 'Base.Rhino20DS', + 'Base.RMB93', + 'Base.Romeo3', + 'Base.RossMK3', + 'Base.RPD', + 'Base.RPK', + 'Base.RPK12', + 'Base.RPK16', + 'Base.RSH12', + 'Base.rtm_pillau', + 'Base.Ruger10_22', + 'Base.Ruger357', + 'Base.RugerLC', + 'Base.RX01', + 'Base.SA58', + 'Base.Saiga12', + 'Base.Saiga9_Silencer', + 'Base.Saiga9mm', + 'Base.Salvo_12G_Suppressor', + 'Base.Samurai_aw', + 'Base.Samurai_kendo', + 'Base.SAR21', + 'Base.Scar_GL', + 'Base.Scar_GL_empty', + 'Base.Scar_pdw_stock', + 'Base.Scar_ssr_stock', + 'Base.Scar_stock', + 'Base.ScarH', + 'Base.ScarL', + 'Base.Schofield1875', + 'Base.Scout_elite', + 'Base.scrap_bipod', + 'Base.scrap_bipod_open', + 'Base.scrap_grip_drill', + 'Base.scrap_grip_screwdriver', + 'Base.scrap_mount', + 'Base.scrap_mount_shotgun', + 'Base.scrap_pipe_suppressor', + 'Base.Scrap_Silencer', + 'Base.scrap_stock', + 'Base.ScrapRevolver', + 'Base.ShellHolder', + 'Base.Shorty', + 'Base.Shotgun', + 'Base.ShotgunSawnoff', + 'Base.SIG_553', + 'Base.SIG516', + 'Base.SigSauerRomeo3', + 'Base.Silenced_Sten', + 'Base.Sjorgen', + 'Base.Sjorgen_Short', + 'Base.SKS', + 'Base.SKS_carbine', + 'Base.SKS_carbine_short', + 'Base.SLDG', + 'Base.SMG_Silencer', + 'Base.Snub22LR', + 'Base.SodaCan_Silencer', + 'Base.SPAS12', + 'Base.SPAS15', + 'Base.Spectre', + 'Base.SprayCan_Silencer', + 'Base.Springfield_longrange_scope', + 'Base.Springfield_sniper', + 'Base.Springfield1903', + 'Base.SR1M', + 'Base.SR338', + 'Base.SR3M', + 'Base.SR47', + 'Base.SS2V5', + 'Base.stark_se', + 'Base.SteinerTac2', + 'Base.Sten_MK5', + 'Base.stock_pistol_fab', + 'Base.Striker', + 'Base.sup2', + 'Base.Suppx_Silencer', + 'Base.Surefire_light', + 'Base.Surefire_M925', + 'Base.SurefireX400', + 'Base.SurefireX400_BEAM', + 'Base.SUSAT', + 'Base.SV98', + 'Base.SVD', + 'Base.svd_handguard_xrs_drg', + 'Base.svd_hg_plastic', + 'Base.svd_hg_wood', + 'Base.SVD_short', + 'Base.svd_stock_wood', + 'Base.SVD12', + 'Base.SVDK', + 'Base.SVDK_short', + 'Base.SVT_40', + 'Base.SVU', + 'Base.SW1905', + 'Base.SW1917', + 'Base.SW500', + 'Base.SW629', + 'Base.SWM1854', + 'Base.SWM1894', + 'Base.SWM3', + 'Base.SWM327', + 'Base.SWM629_Deluxe', + 'Base.SWMP_12', + 'Base.tango_down', + 'Base.TankgewehrM1918', + 'Base.Taurus_raging_bull', + 'Base.Taurus_raging_bull460', + 'Base.Taurus_RT85', + 'Base.Taurus606', + 'Base.TEC9', + 'Base.TestAccessory', + 'Base.TGP_Silencer', + 'Base.Thompson', + 'Base.TMP', + 'Base.TMP_Silencer', + 'Base.TritiumSights', + 'Base.TruBrite', + 'Base.Type81', + 'Base.Type81_stock', + 'Base.Type88', + 'Base.UMP45', + 'Base.UMP45_long', + 'Base.UniversalMount', + 'Base.USAS12', + 'Base.USP45', + 'Base.UZI', + 'Base.V_M87', + 'Base.ValmetM82', + 'Base.VarmintRifle', + 'Base.VenomRDS', + 'Base.VEPR', + 'Base.Veresk', + 'Base.VictorySW22', + 'Base.VortexRedDot', + 'Base.VP70', + 'Base.VP70_pistol_stock', + 'Base.VR80', + 'Base.VSK', + 'Base.VSS', + 'Base.VSS_stock_Tactical', + 'Base.VSS_stock_wood', + 'Base.VSS_Tactical', + 'Base.VSSK', + 'Base.vtac_uvg', + 'Base.VZ58', + 'Base.VZ58_stock', + 'Base.VZ61', + 'Base.WA2000', + 'Base.Walther_P38', + 'Base.WaterBottle_ductaped', + 'Base.Webley_MK_snub', + 'Base.Webley_Revolver', + 'Base.Wieger940', + 'Base.Wieger940_folding', + 'Base.Wieger940_stock', + 'Base.Wildey', + 'Base.win_1886_hg_wood', + 'Base.win_1886_stock_wood', + 'Base.win_1895_stock', + 'Base.win_archangel_handguard', + 'Base.win_archangel_stock', + 'Base.win_m1887_grip', + 'Base.win_m1887_stock', + 'Base.win_mts_stock', + 'Base.win_sjorgen_stock', + 'Base.win_SWM1854_hg_wood', + 'Base.win_SWM1854_stock_wood', + 'Base.win_swm1894_handguard', + 'Base.win_swm1894_stock', + 'Base.Winchester1886', + 'Base.Winchester1895', + 'Base.Winchester1897', + 'Base.x2Scope', + 'Base.x4Scope', + 'Base.X86', + 'Base.x8Scope', + 'Base.XD', + 'Base.XM8', + 'Base.ZaMiniRDS', + 'Base.Zeiss4x25', + 'Base.zenit_b25u', + 'Base.zenit_rk_1', + 'Base.zenit_rk_5', + 'Base.zenit_rk6', + 'Base.Zenit2P', + }, +} diff --git a/common/media/lua/shared/OFSpawnProfile.lua b/common/media/lua/shared/OFSpawnProfile.lua new file mode 100644 index 0000000..35162e2 --- /dev/null +++ b/common/media/lua/shared/OFSpawnProfile.lua @@ -0,0 +1,5 @@ +-- Auto-generated by tools/ggs-dist-cli.js apply +-- Keep this empty template in git; generated content can overwrite it. +return { + items = {}, +} diff --git a/data/OFSpawnProfile.generated.lua b/data/OFSpawnProfile.generated.lua new file mode 100644 index 0000000..420ba5f --- /dev/null +++ b/data/OFSpawnProfile.generated.lua @@ -0,0 +1,27 @@ +-- Auto-generated by tools/ggs-dist-cli.js apply +-- Generated at: 2026-02-11T22:49:03.184Z +return { + items = { + ["Base.1P78"] = { + enabled = true, + placements = { + ["ArmyStorageAmmunition"] = 1, + ["ArmyStorageGuns"] = 1, + }, + }, + ["Base.1PN93_4"] = { + enabled = false, + placements = { + ["ArmyStorageAmmunition"] = 1, + ["ArmyStorageGuns"] = 1, + }, + }, + ["Base.9x39_Silencer"] = { + enabled = true, + placements = { + ["ArmyStorageAmmunition"] = 1, + ["ArmyStorageGuns"] = 1, + }, + }, + }, +} diff --git a/data/ggs-spawn-catalog.json b/data/ggs-spawn-catalog.json new file mode 100644 index 0000000..a970297 --- /dev/null +++ b/data/ggs-spawn-catalog.json @@ -0,0 +1,102537 @@ +{ + "formatVersion": 1, + "generatedAt": "2026-02-11T23:20:13.081Z", + "source": { + "ggsRoot": "source\\GaelGunStore\\42", + "lootLuaPath": "source\\GaelGunStore\\42\\media\\lua\\server\\item\\loot.lua", + "firearmScriptsDir": "source\\GaelGunStore\\42\\media\\scripts\\Firearms", + "attachmentScriptsDir": "source\\GaelGunStore\\42\\media\\scripts\\GunPartItem" + }, + "notes": { + "spawnRateFormula": "effectiveWeight = baseWeight * lootAmountMultiplier * SandboxVars[sv]", + "lootAmountMultiplierLookup": [ + 0, + 0.25, + 0.5, + 1, + 2, + 4 + ] + }, + "counts": { + "firearms": 327, + "attachments": 586, + "totalItems": 913, + "placementRows": 12436, + "distributionLists": 20 + }, + "lists": [ + "ArmyStorageAmmunition", + "ArmyStorageGuns", + "BarCounterWeapon", + "ClosetInstruments", + "ClosetShelfGeneric", + "DrugLabGuns", + "DrugShackWeapons", + "FirearmWeapons", + "FirearmWeapons_Late", + "FirearmWeapons_Mid", + "GarageFirearms", + "GunStoreCases", + "GunStoreKnives", + "GunStoreMagsAmmo", + "GunStorePistols", + "PawnShopCases", + "PawnShopGuns", + "PoliceLockers", + "PoliceStorageGuns", + "SecurityLockers" + ], + "items": [ + { + "item": "Base.1P78", + "shortId": "1P78", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.1PN93_4", + "shortId": "1PN93_4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.9x39_Silencer", + "shortId": "9x39_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.A2000", + "shortId": "A2000", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.A2000_Silencer", + "shortId": "A2000_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.A91", + "shortId": "A91", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AA12", + "shortId": "AA12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.ACE21", + "shortId": "ACE21", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ACE23", + "shortId": "ACE23", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ACE52_CQB", + "shortId": "ACE52_CQB", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.ACE53", + "shortId": "ACE53", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.ACOGx4", + "shortId": "ACOGx4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ACR", + "shortId": "ACR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.ADS", + "shortId": "ADS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AEK", + "shortId": "AEK", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AEK919", + "shortId": "AEK919", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK101", + "shortId": "AK101", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK103", + "shortId": "AK103", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AK12", + "shortId": "AK12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AK12_stock", + "shortId": "AK12_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK19", + "shortId": "AK19", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AK19_stock", + "shortId": "AK19_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK47", + "shortId": "AK47", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK47_stock", + "shortId": "AK47_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK5C", + "shortId": "AK5C", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK74", + "shortId": "AK74", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK74_stock", + "shortId": "AK74_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK74u", + "shortId": "AK74u", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK74u_long", + "shortId": "AK74u_long", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK74u_stock", + "shortId": "AK74u_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK9", + "shortId": "AK9", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK9_stock", + "shortId": "AK9_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AKHGtactical", + "shortId": "AKHGtactical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AKM", + "shortId": "AKM", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AKU12", + "shortId": "AKU12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AK_Wood_stock", + "shortId": "AK_Wood_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AK_minidrako", + "shortId": "AK_minidrako", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.AMD65", + "shortId": "AMD65", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AMD65_stock", + "shortId": "AMD65_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AN94", + "shortId": "AN94", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AN94_stock", + "shortId": "AN94_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ANPEQ_10", + "shortId": "ANPEQ_10", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ANPEQ_10_BEAM", + "shortId": "ANPEQ_10_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.ANPEQ_2", + "shortId": "ANPEQ_2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ANPEQ_2_BEAM", + "shortId": "ANPEQ_2_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.APC9K", + "shortId": "APC9K", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AR10", + "shortId": "AR10", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.AR10_stock", + "shortId": "AR10_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AR15", + "shortId": "AR15", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.AR15_handguard", + "shortId": "AR15_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AR15_stock", + "shortId": "AR15_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AR160", + "shortId": "AR160", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.AR6951", + "shortId": "AR6951", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AR_handguard", + "shortId": "AR_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ASH_12", + "shortId": "ASH_12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.ATN_Thor", + "shortId": "ATN_Thor", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AUG_9mm", + "shortId": "AUG_9mm", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AUG_A1", + "shortId": "AUG_A1", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AUG_A2", + "shortId": "AUG_A2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AWS", + "shortId": "AWS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Accupoint", + "shortId": "Accupoint", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Acog_TA648", + "shortId": "Acog_TA648", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Acog_ecos", + "shortId": "Acog_ecos", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AkHGwood", + "shortId": "AkHGwood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AkMount", + "shortId": "AkMount", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Anaconda", + "shortId": "Anaconda", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AngleGrip", + "shortId": "AngleGrip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.AssaultRifle", + "shortId": "AssaultRifle", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.AssaultRifle2", + "shortId": "AssaultRifle2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Automag357", + "shortId": "Automag357", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Automag44", + "shortId": "Automag44", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Automag50AE", + "shortId": "Automag50AE", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.BAR", + "shortId": "BAR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.BaldrPro", + "shortId": "BaldrPro", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.BaldrPro_BEAM", + "shortId": "BaldrPro_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.BallisticScope", + "shortId": "BallisticScope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Becker_Shotgun", + "shortId": "Becker_Shotgun", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Becker_Shotgun_Short", + "shortId": "Becker_Shotgun_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.BenelliM4", + "shortId": "BenelliM4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Beretta_A400", + "shortId": "Beretta_A400", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Beretta_A400_Short", + "shortId": "Beretta_A400_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Beretta_PX4", + "shortId": "Beretta_PX4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Bravo4", + "shortId": "Bravo4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.BrowningHP", + "shortId": "BrowningHP", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Browning_Auto", + "shortId": "Browning_Auto", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Browning_Auto_Short", + "shortId": "Browning_Auto_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CBJ", + "shortId": "CBJ", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.CETME", + "shortId": "CETME", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.CP1", + "shortId": "CP1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CS5", + "shortId": "CS5", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.CZ75", + "shortId": "CZ75", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CZ805", + "shortId": "CZ805", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.CZScorpion", + "shortId": "CZScorpion", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Carcano", + "shortId": "Carcano", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CarcanoCarbine1891", + "shortId": "CarcanoCarbine1891", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CeiRigotti", + "shortId": "CeiRigotti", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.ChokeTubeFull", + "shortId": "ChokeTubeFull", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ChokeTubeImproved", + "shortId": "ChokeTubeImproved", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CircuitJudgeRifle", + "shortId": "CircuitJudgeRifle", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Clip_12GClip", + "shortId": "Clip_12GClip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_12GClip14", + "shortId": "Clip_12GClip14", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_12GDrum24", + "shortId": "Clip_12GDrum24", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_22LRClip", + "shortId": "Clip_22LRClip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_22LRClip50", + "shortId": "Clip_22LRClip50", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_22LRDrum100", + "shortId": "Clip_22LRDrum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_308Box150", + "shortId": "Clip_308Box150", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_308Clip", + "shortId": "Clip_308Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_308Clip40", + "shortId": "Clip_308Clip40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_308Drum100", + "shortId": "Clip_308Drum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_308Drum60", + "shortId": "Clip_308Drum60", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_357Clip", + "shortId": "Clip_357Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_357Drum45", + "shortId": "Clip_357Drum45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_44Clip", + "shortId": "Clip_44Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_44Clip20", + "shortId": "Clip_44Clip20", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_44Drum50", + "shortId": "Clip_44Drum50", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Clip", + "shortId": "Clip_45Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Clip25", + "shortId": "Clip_45Clip25", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Clip30old", + "shortId": "Clip_45Clip30old", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Drum100", + "shortId": "Clip_45Drum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Drum50", + "shortId": "Clip_45Drum50", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_45Drum60old", + "shortId": "Clip_45Drum60old", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_50Clip", + "shortId": "Clip_50Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_50Clip18", + "shortId": "Clip_50Clip18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_50MagnumClip", + "shortId": "Clip_50MagnumClip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_50MagnumClip18", + "shortId": "Clip_50MagnumClip18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_50MagnumDrum40", + "shortId": "Clip_50MagnumDrum40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_545x39Clip30", + "shortId": "Clip_545x39Clip30", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_545x39Clip60", + "shortId": "Clip_545x39Clip60", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_545x39Drum100", + "shortId": "Clip_545x39Drum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_556Box150", + "shortId": "Clip_556Box150", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_556Clip", + "shortId": "Clip_556Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_556Drum_100rnd", + "shortId": "Clip_556Drum_100rnd", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_556Drum_60rnd", + "shortId": "Clip_556Drum_60rnd", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x39Clip", + "shortId": "Clip_762x39Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x39Clip45", + "shortId": "Clip_762x39Clip45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x39Drum100", + "shortId": "Clip_762x39Drum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x39Drum73", + "shortId": "Clip_762x39Drum73", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x54rBox150", + "shortId": "Clip_762x54rBox150", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x54rClip", + "shortId": "Clip_762x54rClip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_762x54rClip40", + "shortId": "Clip_762x54rClip40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_792x57Box75", + "shortId": "Clip_792x57Box75", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_792x57Box97", + "shortId": "Clip_792x57Box97", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_792x57Clip", + "shortId": "Clip_792x57Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmClip", + "shortId": "Clip_9mmClip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmClip100old", + "shortId": "Clip_9mmClip100old", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmClip30", + "shortId": "Clip_9mmClip30", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmClip30old", + "shortId": "Clip_9mmClip30old", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmClip50old", + "shortId": "Clip_9mmClip50old", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmDrum100", + "shortId": "Clip_9mmDrum100", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmDrum50", + "shortId": "Clip_9mmDrum50", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9mmDrum75", + "shortId": "Clip_9mmDrum75", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9x39Clip", + "shortId": "Clip_9x39Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9x39Clip40", + "shortId": "Clip_9x39Clip40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_9x39Drum60", + "shortId": "Clip_9x39Drum60", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_A2000", + "shortId": "Clip_A2000", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_A91", + "shortId": "Clip_A91", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AA12", + "shortId": "Clip_AA12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ACE21", + "shortId": "Clip_ACE21", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ACE23", + "shortId": "Clip_ACE23", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ACE52_CQB", + "shortId": "Clip_ACE52_CQB", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ACE53", + "shortId": "Clip_ACE53", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ACR", + "shortId": "Clip_ACR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ADS", + "shortId": "Clip_ADS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AEK", + "shortId": "Clip_AEK", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AEK919", + "shortId": "Clip_AEK919", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK101", + "shortId": "Clip_AK101", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK103", + "shortId": "Clip_AK103", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK12", + "shortId": "Clip_AK12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK19", + "shortId": "Clip_AK19", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK47", + "shortId": "Clip_AK47", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK5C", + "shortId": "Clip_AK5C", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK74", + "shortId": "Clip_AK74", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK74u", + "shortId": "Clip_AK74u", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK74u_long", + "shortId": "Clip_AK74u_long", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK9", + "shortId": "Clip_AK9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AKM", + "shortId": "Clip_AKM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AKU12", + "shortId": "Clip_AKU12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AK_minidrako", + "shortId": "Clip_AK_minidrako", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AM65", + "shortId": "Clip_AM65", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AMD65", + "shortId": "Clip_AMD65", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AN94", + "shortId": "Clip_AN94", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_APC9K", + "shortId": "Clip_APC9K", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AR10", + "shortId": "Clip_AR10", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AR15", + "shortId": "Clip_AR15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AR160", + "shortId": "Clip_AR160", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AR47", + "shortId": "Clip_AR47", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AR6951", + "shortId": "Clip_AR6951", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ASH_12", + "shortId": "Clip_ASH_12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AUG_9mm", + "shortId": "Clip_AUG_9mm", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AUG_A1", + "shortId": "Clip_AUG_A1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AUG_A2", + "shortId": "Clip_AUG_A2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AWS", + "shortId": "Clip_AWS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AssaultRifle", + "shortId": "Clip_AssaultRifle", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_AssaultRifle2", + "shortId": "Clip_AssaultRifle2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Automag357", + "shortId": "Clip_Automag357", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Automag44", + "shortId": "Clip_Automag44", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Automag50AE", + "shortId": "Clip_Automag50AE", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_BAR", + "shortId": "Clip_BAR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Beretta_PX4", + "shortId": "Clip_Beretta_PX4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_BizonClip64", + "shortId": "Clip_BizonClip64", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_BrowningHP", + "shortId": "Clip_BrowningHP", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CBJ", + "shortId": "Clip_CBJ", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CETME", + "shortId": "Clip_CETME", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CS5", + "shortId": "Clip_CS5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CZ75", + "shortId": "Clip_CZ75", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CZ805", + "shortId": "Clip_CZ805", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_CZScorpion", + "shortId": "Clip_CZScorpion", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Colt9mm", + "shortId": "Clip_Colt9mm", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Coonan357", + "shortId": "Clip_Coonan357", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_DDM4", + "shortId": "Clip_DDM4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_DVB15", + "shortId": "Clip_DVB15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_DeLisle", + "shortId": "Clip_DeLisle", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Deagle357_gold", + "shortId": "Clip_Deagle357_gold", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Deagle50AE", + "shortId": "Clip_Deagle50AE", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_DeagleCar14", + "shortId": "Clip_DeagleCar14", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FAL", + "shortId": "Clip_FAL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FAL_CQB", + "shortId": "Clip_FAL_CQB", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FAMAS", + "shortId": "Clip_FAMAS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FN2000", + "shortId": "Clip_FN2000", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FN502_22LR", + "shortId": "Clip_FN502_22LR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FNX45", + "shortId": "Clip_FNX45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_FiveSeven", + "shortId": "Clip_FiveSeven", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G17", + "shortId": "Clip_G17", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G18", + "shortId": "Clip_G18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G2", + "shortId": "Clip_G2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G27", + "shortId": "Clip_G27", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G36C", + "shortId": "Clip_G36C", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G3A3", + "shortId": "Clip_G3A3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_G43", + "shortId": "Clip_G43", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_GOL", + "shortId": "Clip_GOL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_GSH18", + "shortId": "Clip_GSH18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Galil", + "shortId": "Clip_Galil", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Glock23", + "shortId": "Clip_Glock23", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Glock43", + "shortId": "Clip_Glock43", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Glock_tactical", + "shortId": "Clip_Glock_tactical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Grizzly50AE", + "shortId": "Clip_Grizzly50AE", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Groza", + "shortId": "Clip_Groza", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HK416", + "shortId": "Clip_HK416", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HKG28", + "shortId": "Clip_HKG28", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HKMK23", + "shortId": "Clip_HKMK23", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HK_121", + "shortId": "Clip_HK_121", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HoneyBadger", + "shortId": "Clip_HoneyBadger", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_HuntingRifle", + "shortId": "Clip_HuntingRifle", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_IA2", + "shortId": "Clip_IA2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_IA2_308", + "shortId": "Clip_IA2_308", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_JNG90", + "shortId": "Clip_JNG90", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Jericho941", + "shortId": "Clip_Jericho941", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_K2", + "shortId": "Clip_K2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_K7", + "shortId": "Clip_K7", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_KAC_PDW", + "shortId": "Clip_KAC_PDW", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Kimber1911", + "shortId": "Clip_Kimber1911", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Kriss9mm", + "shortId": "Clip_Kriss9mm", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_KrissVector45", + "shortId": "Clip_KrissVector45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_L115A", + "shortId": "Clip_L115A", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_L85", + "shortId": "Clip_L85", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_L86", + "shortId": "Clip_L86", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_L96", + "shortId": "Clip_L96", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_LR300", + "shortId": "Clip_LR300", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_LSAT", + "shortId": "Clip_LSAT", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_LVOA", + "shortId": "Clip_LVOA", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_LanchesterMK1", + "shortId": "Clip_LanchesterMK1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Lewis", + "shortId": "Clip_Lewis", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M1", + "shortId": "Clip_M1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M110", + "shortId": "Clip_M110", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M16A2", + "shortId": "Clip_M16A2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M1A1", + "shortId": "Clip_M1A1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M200", + "shortId": "Clip_M200", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M21", + "shortId": "Clip_M21", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M24", + "shortId": "Clip_M24", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M240B", + "shortId": "Clip_M240B", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M249", + "shortId": "Clip_M249", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M39", + "shortId": "Clip_M39", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M4", + "shortId": "Clip_M4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M40", + "shortId": "Clip_M40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M60E4", + "shortId": "Clip_M60E4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M82A3", + "shortId": "Clip_M82A3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M93R", + "shortId": "Clip_M93R", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M98", + "shortId": "Clip_M98", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M98B", + "shortId": "Clip_M98B", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_M9_Samurai", + "shortId": "Clip_M9_Samurai", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MAB38A", + "shortId": "Clip_MAB38A", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MAC10", + "shortId": "Clip_MAC10", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MAT49", + "shortId": "Clip_MAT49", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MG4", + "shortId": "Clip_MG4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MG42", + "shortId": "Clip_MG42", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MG710", + "shortId": "Clip_MG710", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MK18", + "shortId": "Clip_MK18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP18", + "shortId": "Clip_MP18", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP40", + "shortId": "Clip_MP40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP5", + "shortId": "Clip_MP5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP5K", + "shortId": "Clip_MP5K", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP5SD", + "shortId": "Clip_MP5SD", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP7", + "shortId": "Clip_MP7", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MP9", + "shortId": "Clip_MP9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MPX", + "shortId": "Clip_MPX", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MSST", + "shortId": "Clip_MSST", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MTAR", + "shortId": "Clip_MTAR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_MX4", + "shortId": "Clip_MX4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Micro_UZI", + "shortId": "Clip_Micro_UZI", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Mini_14", + "shortId": "Clip_Mini_14", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Minimi", + "shortId": "Clip_Minimi", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Negev", + "shortId": "Clip_Negev", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_OTS_33", + "shortId": "Clip_OTS_33", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P220", + "shortId": "Clip_P220", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P220_Elite", + "shortId": "Clip_P220_Elite", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P228", + "shortId": "Clip_P228", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P38", + "shortId": "Clip_P38", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P90", + "shortId": "Clip_P90", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P90Clip", + "shortId": "Clip_P90Clip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P99", + "shortId": "Clip_P99", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_P99_kilin", + "shortId": "Clip_P99_kilin", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PB6P9", + "shortId": "Clip_PB6P9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PKP", + "shortId": "Clip_PKP", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PP2000", + "shortId": "Clip_PP2000", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PP93", + "shortId": "Clip_PP93", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PPSH41", + "shortId": "Clip_PPSH41", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_PP_Bizon", + "shortId": "Clip_PP_Bizon", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Pistol", + "shortId": "Clip_Pistol", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Pistol2", + "shortId": "Clip_Pistol2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Pistol3", + "shortId": "Clip_Pistol3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_QBA", + "shortId": "Clip_QBA", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_QBB95", + "shortId": "Clip_QBB95", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_QBZ951", + "shortId": "Clip_QBZ951", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_R5", + "shortId": "Clip_R5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_RPD", + "shortId": "Clip_RPD", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_RPK", + "shortId": "Clip_RPK", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_RPK12", + "shortId": "Clip_RPK12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_RPK16", + "shortId": "Clip_RPK16", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Ruger10_22", + "shortId": "Clip_Ruger10_22", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_RugerLC", + "shortId": "Clip_RugerLC", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SA58", + "shortId": "Clip_SA58", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SAR21", + "shortId": "Clip_SAR21", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SIG516", + "shortId": "Clip_SIG516", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SIG_553", + "shortId": "Clip_SIG_553", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SKS", + "shortId": "Clip_SKS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SPAS15", + "shortId": "Clip_SPAS15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SR1M", + "shortId": "Clip_SR1M", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SR338", + "shortId": "Clip_SR338", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SR3M", + "shortId": "Clip_SR3M", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SR47", + "shortId": "Clip_SR47", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SS2V5", + "shortId": "Clip_SS2V5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SV98", + "shortId": "Clip_SV98", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVD", + "shortId": "Clip_SVD", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVD12", + "shortId": "Clip_SVD12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVDK", + "shortId": "Clip_SVDK", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVDK_short", + "shortId": "Clip_SVDK_short", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVD_short", + "shortId": "Clip_SVD_short", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVT_40", + "shortId": "Clip_SVT_40", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_SVU", + "shortId": "Clip_SVU", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Saiga12", + "shortId": "Clip_Saiga12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Saiga9mm", + "shortId": "Clip_Saiga9mm", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Samurai_aw", + "shortId": "Clip_Samurai_aw", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Samurai_kendo", + "shortId": "Clip_Samurai_kendo", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ScarH", + "shortId": "Clip_ScarH", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ScarL", + "shortId": "Clip_ScarL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Scout_elite", + "shortId": "Clip_Scout_elite", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Silenced_Sten", + "shortId": "Clip_Silenced_Sten", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Springfield_sniper", + "shortId": "Clip_Springfield_sniper", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Sten_MK5", + "shortId": "Clip_Sten_MK5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_TEC9", + "shortId": "Clip_TEC9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_TMP", + "shortId": "Clip_TMP", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Thompson", + "shortId": "Clip_Thompson", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Type81", + "shortId": "Clip_Type81", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Type88", + "shortId": "Clip_Type88", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_UMP45", + "shortId": "Clip_UMP45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_UMP45_long", + "shortId": "Clip_UMP45_long", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_USAS12", + "shortId": "Clip_USAS12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_USP45", + "shortId": "Clip_USP45", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_UZI", + "shortId": "Clip_UZI", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VEPR", + "shortId": "Clip_VEPR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VP70", + "shortId": "Clip_VP70", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VR80", + "shortId": "Clip_VR80", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VSK", + "shortId": "Clip_VSK", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VSS", + "shortId": "Clip_VSS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VSSK", + "shortId": "Clip_VSSK", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VSS_Tactical", + "shortId": "Clip_VSS_Tactical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VZ58", + "shortId": "Clip_VZ58", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VZ61", + "shortId": "Clip_VZ61", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_V_M87", + "shortId": "Clip_V_M87", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_ValmetM82", + "shortId": "Clip_ValmetM82", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Veresk", + "shortId": "Clip_Veresk", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_VictorySW22", + "shortId": "Clip_VictorySW22", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_WA2000", + "shortId": "Clip_WA2000", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Wieger940", + "shortId": "Clip_Wieger940", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_Wildey", + "shortId": "Clip_Wildey", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_X86", + "shortId": "Clip_X86", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_XD", + "shortId": "Clip_XD", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_XM8", + "shortId": "Clip_XM8", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Clip_pistol_shotgun", + "shortId": "Clip_pistol_shotgun", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Colt9mm", + "shortId": "Colt9mm", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.ColtNavy1851", + "shortId": "ColtNavy1851", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ColtNavyExorcist", + "shortId": "ColtNavyExorcist", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ColtPeacemaker1873", + "shortId": "ColtPeacemaker1873", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Comp_M4", + "shortId": "Comp_M4", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Compact4x", + "shortId": "Compact4x", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Coonan357", + "shortId": "Coonan357", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Cover2_Silencer", + "shortId": "Cover2_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Cover3_Silencer", + "shortId": "Cover3_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Cover4_Silencer", + "shortId": "Cover4_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Cover_Silencer", + "shortId": "Cover_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Coyote", + "shortId": "Coyote", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.CrimsonRedDot", + "shortId": "CrimsonRedDot", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DBAL_A2", + "shortId": "DBAL_A2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DBAL_A2_BEAM", + "shortId": "DBAL_A2_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.DB_Condor", + "shortId": "DB_Condor", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DB_Condor_sawn", + "shortId": "DB_Condor_sawn", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DDM4", + "shortId": "DDM4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.DVB15", + "shortId": "DVB15", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Dbal9021", + "shortId": "Dbal9021", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Dbal9021_BEAM", + "shortId": "Dbal9021_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.DeLisle", + "shortId": "DeLisle", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Deagle357_gold", + "shortId": "Deagle357_gold", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Deagle50AE", + "shortId": "Deagle50AE", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.DeagleCar14", + "shortId": "DeagleCar14", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Deltapoint", + "shortId": "Deltapoint", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DoubleBarrelShotgun", + "shortId": "DoubleBarrelShotgun", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.DoubleBarrelShotgunSawnoff", + "shortId": "DoubleBarrelShotgunSawnoff", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Dtkp_Hexagon_Silencer", + "shortId": "Dtkp_Hexagon_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Dtkp_Silencer", + "shortId": "Dtkp_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.EKP_kobra", + "shortId": "EKP_kobra", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.EKP_kobra_2x", + "shortId": "EKP_kobra_2x", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ENARM_Pentagun", + "shortId": "ENARM_Pentagun", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Elcan_M145", + "shortId": "Elcan_M145", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Enfield", + "shortId": "Enfield", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Enfield1917", + "shortId": "Enfield1917", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Eotech", + "shortId": "Eotech", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Eotech_XPS3", + "shortId": "Eotech_XPS3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Eotech_vudu", + "shortId": "Eotech_vudu", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.FAL", + "shortId": "FAL", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.FAL_CQB", + "shortId": "FAL_CQB", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.FAMAS", + "shortId": "FAMAS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.FN2000", + "shortId": "FN2000", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.FN502_22LR", + "shortId": "FN502_22LR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.FNX45", + "shortId": "FNX45", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.FiveSeven", + "shortId": "FiveSeven", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.G17", + "shortId": "G17", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.G18", + "shortId": "G18", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.G2", + "shortId": "G2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.G27", + "shortId": "G27", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.G36C", + "shortId": "G36C", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.G3A3", + "shortId": "G3A3", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.G43", + "shortId": "G43", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.GOL", + "shortId": "GOL", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.GP30_GL", + "shortId": "GP30_GL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.GP30_GL_empty", + "shortId": "GP30_GL_empty", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.GSH18", + "shortId": "GSH18", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Galil", + "shortId": "Galil", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Glock23", + "shortId": "Glock23", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Glock43", + "shortId": "Glock43", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Glock_tactical", + "shortId": "Glock_tactical", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.GripPod", + "shortId": "GripPod", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Grip_Surefire_blk", + "shortId": "Grip_Surefire_blk", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Grip_Surefire_tan", + "shortId": "Grip_Surefire_tan", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Grizzly50AE", + "shortId": "Grizzly50AE", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Groza", + "shortId": "Groza", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.GunCamo", + "shortId": "GunCamo", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.GunLight", + "shortId": "GunLight", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.HAMR", + "shortId": "HAMR", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.HK416", + "shortId": "HK416", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.HKG28", + "shortId": "HKG28", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.HKMK23", + "shortId": "HKMK23", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.HK_121", + "shortId": "HK_121", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Hexagon_12G_Suppressor", + "shortId": "Hexagon_12G_Suppressor", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.HoneyBadger", + "shortId": "HoneyBadger", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.HuntingRifle", + "shortId": "HuntingRifle", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.IA2", + "shortId": "IA2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.IA2_308", + "shortId": "IA2_308", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.IRNV", + "shortId": "IRNV", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.InsightLA5", + "shortId": "InsightLA5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.InsightLA5_BEAM", + "shortId": "InsightLA5_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.InsightWMX200", + "shortId": "InsightWMX200", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.JNG90", + "shortId": "JNG90", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Jackhammer", + "shortId": "Jackhammer", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Jericho941", + "shortId": "Jericho941", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.K2", + "shortId": "K2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.K7", + "shortId": "K7", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.KAC_PDW", + "shortId": "KAC_PDW", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.KS23", + "shortId": "KS23", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.KSG", + "shortId": "KSG", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Kark98", + "shortId": "Kark98", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Kimber1911", + "shortId": "Kimber1911", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Kobra", + "shortId": "Kobra", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Kriss9mm", + "shortId": "Kriss9mm", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Kriss9mm_Silencer", + "shortId": "Kriss9mm_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.KrissVector45", + "shortId": "KrissVector45", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.L115A", + "shortId": "L115A", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.L85", + "shortId": "L85", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.L86", + "shortId": "L86", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.L96", + "shortId": "L96", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.LR300", + "shortId": "LR300", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.LSAT", + "shortId": "LSAT", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.LVOA", + "shortId": "LVOA", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.LanchesterMK1", + "shortId": "LanchesterMK1", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Leapers_UTG3", + "shortId": "Leapers_UTG3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Lewis", + "shortId": "Lewis", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Luty_stock", + "shortId": "Luty_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M1", + "shortId": "M1", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M1014_stock", + "shortId": "M1014_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M110", + "shortId": "M110", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.M16A2", + "shortId": "M16A2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M16A2_handguard", + "shortId": "M16A2_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M16_handguard", + "shortId": "M16_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M16_stock", + "shortId": "M16_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M1887", + "shortId": "M1887", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M1887_Short", + "shortId": "M1887_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M1A1", + "shortId": "M1A1", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M200", + "shortId": "M200", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.M203_GL", + "shortId": "M203_GL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M203_GL_empty", + "shortId": "M203_GL_empty", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M21", + "shortId": "M21", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M24", + "shortId": "M24", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M240B", + "shortId": "M240B", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.M249", + "shortId": "M249", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.M320_GL", + "shortId": "M320_GL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M320_GL_empty", + "shortId": "M320_GL_empty", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M39", + "shortId": "M39", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.M4", + "shortId": "M4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M40", + "shortId": "M40", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M600P", + "shortId": "M600P", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M60E4", + "shortId": "M60E4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.M620", + "shortId": "M620", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M82A3", + "shortId": "M82A3", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + } + ] + }, + { + "item": "Base.M93R", + "shortId": "M93R", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.M962LT", + "shortId": "M962LT", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.M98B", + "shortId": "M98B", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.M9_Samurai", + "shortId": "M9_Samurai", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MAB38A", + "shortId": "MAB38A", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MAC10", + "shortId": "MAC10", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MAS36", + "shortId": "MAS36", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MAT49", + "shortId": "MAT49", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MG131", + "shortId": "MG131", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MG4", + "shortId": "MG4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.MG42", + "shortId": "MG42", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.MG710", + "shortId": "MG710", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.MK18", + "shortId": "MK18", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.MP155_montecarlo_stock", + "shortId": "MP155_montecarlo_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP18", + "shortId": "MP18", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MP18_plastic_stock", + "shortId": "MP18_plastic_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP1911", + "shortId": "MP1911", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP40", + "shortId": "MP40", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP5", + "shortId": "MP5", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP5K", + "shortId": "MP5K", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP5SD", + "shortId": "MP5SD", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP7", + "shortId": "MP7", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MP9", + "shortId": "MP9", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MPX", + "shortId": "MPX", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MP_R8", + "shortId": "MP_R8", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MSST", + "shortId": "MSST", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MTAR", + "shortId": "MTAR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.MTS_255", + "shortId": "MTS_255", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MTS_255_Short", + "shortId": "MTS_255_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MX4", + "shortId": "MX4", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.MannlicherM1895", + "shortId": "MannlicherM1895", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MannlicherM1895_long", + "shortId": "MannlicherM1895_long", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MartiniHenry", + "shortId": "MartiniHenry", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MatebaGrifone", + "shortId": "MatebaGrifone", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mauser98", + "shortId": "Mauser98", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MicroT1", + "shortId": "MicroT1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Micro_UZI", + "shortId": "Micro_UZI", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MiniRedDot", + "shortId": "MiniRedDot", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mini_14", + "shortId": "Mini_14", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Minimi", + "shortId": "Minimi", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Mosin", + "shortId": "Mosin", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.MosinNagant1891", + "shortId": "MosinNagant1891", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mosin_Mount", + "shortId": "Mosin_Mount", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mosin_Wood_short_stock", + "shortId": "Mosin_Wood_short_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mosin_Wood_stock", + "shortId": "Mosin_Wood_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mosin_carlo_stock", + "shortId": "Mosin_carlo_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mossber500", + "shortId": "Mossber500", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mossber590", + "shortId": "Mossber590", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Mossberg_grip", + "shortId": "Mossberg_grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.NST_Silencer", + "shortId": "NST_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Nagant_M1895", + "shortId": "Nagant_M1895", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Ncstar_laser", + "shortId": "Ncstar_laser", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Ncstar_laser_BEAM", + "shortId": "Ncstar_laser_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Negev", + "shortId": "Negev", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.OKP7", + "shortId": "OKP7", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.OTS_33", + "shortId": "OTS_33", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.OTS_33_pistol_stock", + "shortId": "OTS_33_pistol_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.OilFilter_Silencer", + "shortId": "OilFilter_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Osprey_Silencer", + "shortId": "Osprey_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P220", + "shortId": "P220", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P220_Elite", + "shortId": "P220_Elite", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P228", + "shortId": "P228", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P90", + "shortId": "P90", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P99", + "shortId": "P99", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.P99_Kilin", + "shortId": "P99_Kilin", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PB6P9", + "shortId": "PB6P9", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PBS1_Silencer", + "shortId": "PBS1_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PBS4_Silencer", + "shortId": "PBS4_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PEQ15", + "shortId": "PEQ15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PEQ15_BEAM", + "shortId": "PEQ15_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.PKA", + "shortId": "PKA", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PKP", + "shortId": "PKP", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.PM_IILP", + "shortId": "PM_IILP", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.POSP", + "shortId": "POSP", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.POSP4x24", + "shortId": "POSP4x24", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PP2000", + "shortId": "PP2000", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PP93", + "shortId": "PP93", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PP93_Silencer", + "shortId": "PP93_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PPSH41", + "shortId": "PPSH41", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.PP_Bizon", + "shortId": "PP_Bizon", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Pistol", + "shortId": "Pistol", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Pistol2", + "shortId": "Pistol2", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Pistol3", + "shortId": "Pistol3", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.PistolScope", + "shortId": "PistolScope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.PotatoGrip", + "shortId": "PotatoGrip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Python357", + "shortId": "Python357", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.QBA", + "shortId": "QBA", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.QBB95", + "shortId": "QBB95", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.QBS09", + "shortId": "QBS09", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.QBS09_Short", + "shortId": "QBS09_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.QBZ951", + "shortId": "QBZ951", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.R5", + "shortId": "R5", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_Tactical_Grip", + "shortId": "R870_Tactical_Grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_Tactical_Grip_short", + "shortId": "R870_Tactical_Grip_short", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_Wood_Grip", + "shortId": "R870_Wood_Grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_Wood_stock", + "shortId": "R870_Wood_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_grip", + "shortId": "R870_grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_magpul_stock", + "shortId": "R870_magpul_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.R870_sps_stock", + "shortId": "R870_sps_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RB7M_Mount", + "shortId": "RB7M_Mount", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RDS", + "shortId": "RDS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RMB93", + "shortId": "RMB93", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RPD", + "shortId": "RPD", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.RPK", + "shortId": "RPK", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.RPK12", + "shortId": "RPK12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.RPK16", + "shortId": "RPK16", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.RSH12", + "shortId": "RSH12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.RX01", + "shortId": "RX01", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RedDot", + "shortId": "RedDot", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Remington1100", + "shortId": "Remington1100", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Remington1100_Short", + "shortId": "Remington1100_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Remington121", + "shortId": "Remington121", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Remington870", + "shortId": "Remington870", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Remington870_Short", + "shortId": "Remington870_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Revolver", + "shortId": "Revolver", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Revolver38", + "shortId": "Revolver38", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Revolver666", + "shortId": "Revolver666", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Revolver_long", + "shortId": "Revolver_long", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Revolver_short", + "shortId": "Revolver_short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Rhino20DS", + "shortId": "Rhino20DS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Romeo3", + "shortId": "Romeo3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RossMK3", + "shortId": "RossMK3", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Ruger10_22", + "shortId": "Ruger10_22", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Ruger357", + "shortId": "Ruger357", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.RugerLC", + "shortId": "RugerLC", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SA58", + "shortId": "SA58", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SAR21", + "shortId": "SAR21", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.SIG516", + "shortId": "SIG516", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.SIG_553", + "shortId": "SIG_553", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SKS", + "shortId": "SKS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SKS_carbine", + "shortId": "SKS_carbine", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SKS_carbine_short", + "shortId": "SKS_carbine_short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SLDG", + "shortId": "SLDG", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SMG_Silencer", + "shortId": "SMG_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SPAS12", + "shortId": "SPAS12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SPAS15", + "shortId": "SPAS15", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.SR1M", + "shortId": "SR1M", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SR338", + "shortId": "SR338", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SR3M", + "shortId": "SR3M", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SR47", + "shortId": "SR47", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.SS2V5", + "shortId": "SS2V5", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SUSAT", + "shortId": "SUSAT", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SV98", + "shortId": "SV98", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SVD", + "shortId": "SVD", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SVD12", + "shortId": "SVD12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SVDK", + "shortId": "SVDK", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SVDK_short", + "shortId": "SVDK_short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SVD_short", + "shortId": "SVD_short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.SVT_40", + "shortId": "SVT_40", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.SVU", + "shortId": "SVU", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SW1905", + "shortId": "SW1905", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SW1917", + "shortId": "SW1917", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SW500", + "shortId": "SW500", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SW629", + "shortId": "SW629", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWM1854", + "shortId": "SWM1854", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWM1894", + "shortId": "SWM1894", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWM3", + "shortId": "SWM3", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWM327", + "shortId": "SWM327", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWM629_Deluxe", + "shortId": "SWM629_Deluxe", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SWMP_12", + "shortId": "SWMP_12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.Saiga12", + "shortId": "Saiga12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Saiga9_Silencer", + "shortId": "Saiga9_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Saiga9mm", + "shortId": "Saiga9mm", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Salvo_12G_Suppressor", + "shortId": "Salvo_12G_Suppressor", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Samurai_aw", + "shortId": "Samurai_aw", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Samurai_kendo", + "shortId": "Samurai_kendo", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ScarH", + "shortId": "ScarH", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.ScarL", + "shortId": "ScarL", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scar_GL", + "shortId": "Scar_GL", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scar_GL_empty", + "shortId": "Scar_GL_empty", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrenadelauncher" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrenadelauncher" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrenadelauncher" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scar_pdw_stock", + "shortId": "Scar_pdw_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scar_ssr_stock", + "shortId": "Scar_ssr_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scar_stock", + "shortId": "Scar_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Schofield1875", + "shortId": "Schofield1875", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scout_elite", + "shortId": "Scout_elite", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ScrapRevolver", + "shortId": "ScrapRevolver", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Scrap_Silencer", + "shortId": "Scrap_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ShellHolder", + "shortId": "ShellHolder", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Shorty", + "shortId": "Shorty", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Shotgun", + "shortId": "Shotgun", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.ShotgunSawnoff", + "shortId": "ShotgunSawnoff", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.SigSauerRomeo3", + "shortId": "SigSauerRomeo3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Silenced_Sten", + "shortId": "Silenced_Sten", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Sjorgen", + "shortId": "Sjorgen", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Sjorgen_Short", + "shortId": "Sjorgen_Short", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Snub22LR", + "shortId": "Snub22LR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SodaCan_Silencer", + "shortId": "SodaCan_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Spectre", + "shortId": "Spectre", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SprayCan_Silencer", + "shortId": "SprayCan_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Springfield1903", + "shortId": "Springfield1903", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Springfield_longrange_scope", + "shortId": "Springfield_longrange_scope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Springfield_sniper", + "shortId": "Springfield_sniper", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.SteinerTac2", + "shortId": "SteinerTac2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Sten_MK5", + "shortId": "Sten_MK5", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Striker", + "shortId": "Striker", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_shotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Suppx_Silencer", + "shortId": "Suppx_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SurefireX400", + "shortId": "SurefireX400", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.SurefireX400_BEAM", + "shortId": "SurefireX400_BEAM", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.Surefire_M925", + "shortId": "Surefire_M925", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Surefire_light", + "shortId": "Surefire_light", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TEC9", + "shortId": "TEC9", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TGP_Silencer", + "shortId": "TGP_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TMP", + "shortId": "TMP", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TMP_Silencer", + "shortId": "TMP_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TankgewehrM1918", + "shortId": "TankgewehrM1918", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Taurus606", + "shortId": "Taurus606", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Taurus_RT85", + "shortId": "Taurus_RT85", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Taurus_raging_bull", + "shortId": "Taurus_raging_bull", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Taurus_raging_bull460", + "shortId": "Taurus_raging_bull460", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TestAccessory", + "shortId": "TestAccessory", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Thompson", + "shortId": "Thompson", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TritiumSights", + "shortId": "TritiumSights", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.TruBrite", + "shortId": "TruBrite", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Type81", + "shortId": "Type81", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Type81_stock", + "shortId": "Type81_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Type88", + "shortId": "Type88", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_lmg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_lmg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_lmg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_lmg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.UMP45", + "shortId": "UMP45", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.UMP45_long", + "shortId": "UMP45_long", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.USAS12", + "shortId": "USAS12", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.USP45", + "shortId": "USP45", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.UZI", + "shortId": "UZI", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.UniversalMount", + "shortId": "UniversalMount", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VEPR", + "shortId": "VEPR", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.VP70", + "shortId": "VP70", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VP70_pistol_stock", + "shortId": "VP70_pistol_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VR80", + "shortId": "VR80", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_autoshotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "SecurityLockers", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugLabGuns", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "DrugShackWeapons", + "weight": 0.25, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_autoshotguns" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_autoshotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.25 + }, + { + "list": "DrugShackWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.25 + }, + { + "list": "SecurityLockers", + "weight": 0.25 + } + ] + }, + { + "item": "Base.VSK", + "shortId": "VSK", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.VSS", + "shortId": "VSS", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VSSK", + "shortId": "VSSK", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.25, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.25, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.25 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.25 + }, + { + "list": "BarCounterWeapon", + "weight": 0.25 + }, + { + "list": "FirearmWeapons", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.25 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.25 + }, + { + "list": "GarageFirearms", + "weight": 0.25 + }, + { + "list": "GunStoreCases", + "weight": 0.25 + }, + { + "list": "GunStoreKnives", + "weight": 0.25 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.25 + }, + { + "list": "GunStorePistols", + "weight": 0.25 + }, + { + "list": "PawnShopCases", + "weight": 0.25 + }, + { + "list": "PawnShopGuns", + "weight": 0.25 + } + ] + }, + { + "item": "Base.VSS_Tactical", + "shortId": "VSS_Tactical", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VSS_stock_Tactical", + "shortId": "VSS_stock_Tactical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VSS_stock_wood", + "shortId": "VSS_stock_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VZ58", + "shortId": "VZ58", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VZ58_stock", + "shortId": "VZ58_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VZ61", + "shortId": "VZ61", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.V_M87", + "shortId": "V_M87", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.ValmetM82", + "shortId": "ValmetM82", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.VarmintRifle", + "shortId": "VarmintRifle", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.VenomRDS", + "shortId": "VenomRDS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Veresk", + "shortId": "Veresk", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.VictorySW22", + "shortId": "VictorySW22", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.VortexRedDot", + "shortId": "VortexRedDot", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.WA2000", + "shortId": "WA2000", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Walther_P38", + "shortId": "Walther_P38", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.WaterBottle_ductaped", + "shortId": "WaterBottle_ductaped", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Webley_MK_snub", + "shortId": "Webley_MK_snub", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Webley_Revolver", + "shortId": "Webley_Revolver", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_revolver" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_revolver" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_revolver" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_revolver" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_revolver" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Wieger940", + "shortId": "Wieger940", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.Wieger940_folding", + "shortId": "Wieger940_folding", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Wieger940_stock", + "shortId": "Wieger940_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Wildey", + "shortId": "Wildey", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.Winchester1886", + "shortId": "Winchester1886", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Winchester1895", + "shortId": "Winchester1895", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_rifles" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_rifles" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_rifles" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_rifles" + } + ], + "aggregatedPlacements": [ + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Winchester1897", + "shortId": "Winchester1897", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_shotguns" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_shotguns" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_shotguns" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.X86", + "shortId": "X86", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_smg" + ], + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_smg" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_smg" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_smg" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.XD", + "shortId": "XD", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 1, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 1 + }, + { + "list": "DrugShackWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.XM8", + "shortId": "XM8", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_ar" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_ar" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_ar" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_ar" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.ZaMiniRDS", + "shortId": "ZaMiniRDS", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Zeiss4x25", + "shortId": "Zeiss4x25", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.Zenit2P", + "shortId": "Zenit2P", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attlaser" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attlaser" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attlaser" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.aek_Silencer", + "shortId": "aek_Silencer", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak74_std_plastic", + "shortId": "ak74_std_plastic", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak74_stock_plum", + "shortId": "ak74_stock_plum", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak74m_stock_std", + "shortId": "ak74m_stock_std", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_545_design", + "shortId": "ak_hg_545_design", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_cnc", + "shortId": "ak_hg_cnc", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_cugir", + "shortId": "ak_hg_cugir", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_hexagon", + "shortId": "ak_hg_hexagon", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_krebs", + "shortId": "ak_hg_krebs", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_magpul_moe", + "shortId": "ak_hg_magpul_moe", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_magpul_zhukov", + "shortId": "ak_hg_magpul_zhukov", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_quad", + "shortId": "ak_hg_quad", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_rail", + "shortId": "ak_hg_rail", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_std", + "shortId": "ak_hg_std", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_hg_vltor", + "shortId": "ak_hg_vltor", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_mount_kobra", + "shortId": "ak_mount_kobra", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_mount_sag", + "shortId": "ak_mount_sag", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_mount_vpo", + "shortId": "ak_mount_vpo", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_mount_xd_rgl", + "shortId": "ak_mount_xd_rgl", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_archangel", + "shortId": "ak_stock_archangel", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_fab", + "shortId": "ak_stock_fab", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_fold", + "shortId": "ak_stock_fold", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_hera", + "shortId": "ak_stock_hera", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_hexagon", + "shortId": "ak_stock_hexagon", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_wrapped", + "shortId": "ak_stock_wrapped", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_zenit_magpul", + "shortId": "ak_stock_zenit_magpul", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_zenit_pt_1", + "shortId": "ak_stock_zenit_pt_1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ak_stock_zenit_pt_3", + "shortId": "ak_stock_zenit_pt_3", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.aks74_stock", + "shortId": "aks74_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.aluminum_skeletonized", + "shortId": "aluminum_skeletonized", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar10_hg_cmmg_mk3_rml15", + "shortId": "ar10_hg_cmmg_mk3_rml15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar10_hg_cmmg_mk3_rml9", + "shortId": "ar10_hg_cmmg_mk3_rml9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar10_hg_kac_urx4_14", + "shortId": "ar10_hg_kac_urx4_14", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar10_hg_lancer_12", + "shortId": "ar10_hg_lancer_12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar10_hg_noveske_quadrail", + "shortId": "ar10_hg_noveske_quadrail", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_adar_stock", + "shortId": "ar15_adar_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_armacon_stock", + "shortId": "ar15_armacon_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_b5_stock", + "shortId": "ar15_b5_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_doublestar_stock", + "shortId": "ar15_doublestar_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_f93_stock", + "shortId": "ar15_f93_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_fab_defense_16s_stock", + "shortId": "ar15_fab_defense_16s_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_fab_defense_core_stock", + "shortId": "ar15_fab_defense_core_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_fab_defense_shock_stock", + "shortId": "ar15_fab_defense_shock_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_adar_wood", + "shortId": "ar15_hg_adar_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_aeroknox_10", + "shortId": "ar15_hg_aeroknox_10", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_aeroknox_15", + "shortId": "ar15_hg_aeroknox_15", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_alexander", + "shortId": "ar15_hg_alexander", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_geissele_13", + "shortId": "ar15_hg_geissele_13", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_geissele_9", + "shortId": "ar15_hg_geissele_9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_lone_star_16", + "shortId": "ar15_hg_lone_star_16", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_lvoa_c", + "shortId": "ar15_hg_lvoa_c", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_lvoa_s", + "shortId": "ar15_hg_lvoa_s", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_magpul_carabine", + "shortId": "ar15_hg_magpul_carabine", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_magpul_moe", + "shortId": "ar15_hg_magpul_moe", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_reflex_carbon", + "shortId": "ar15_hg_reflex_carbon", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_ris_fsp_9", + "shortId": "ar15_hg_ris_fsp_9", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_rsass", + "shortId": "ar15_hg_rsass", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_hg_stngr_vypr_10", + "shortId": "ar15_hg_stngr_vypr_10", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_high_standart_stock", + "shortId": "ar15_high_standart_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_lmt_sopmod_stock", + "shortId": "ar15_lmt_sopmod_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_magpul_gen2_fde_stock", + "shortId": "ar15_magpul_gen2_fde_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_magpul_gen2_stock", + "shortId": "ar15_magpul_gen2_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_magpul_gen3_stock", + "shortId": "ar15_magpul_gen3_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_magpul_prs_gen2_fde_stock", + "shortId": "ar15_magpul_prs_gen2_fde_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_mft_stock", + "shortId": "ar15_mft_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_ripstock_stock", + "shortId": "ar15_ripstock_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_sba3_stock", + "shortId": "ar15_sba3_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_troy_pdw_stock_blk", + "shortId": "ar15_troy_pdw_stock_blk", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_troy_pdw_stock_fde", + "shortId": "ar15_troy_pdw_stock_fde", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_viper_mod1_stock", + "shortId": "ar15_viper_mod1_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_viper_pdw_stock", + "shortId": "ar15_viper_pdw_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_vltor_emod_stock", + "shortId": "ar15_vltor_emod_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ar15_wing_and_skull_12", + "shortId": "ar15_wing_and_skull_12", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.ax_base_pad", + "shortId": "ax_base_pad", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.bcm", + "shortId": "bcm", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.bipod_harris", + "shortId": "bipod_harris", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attbipod" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attbipod" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.bipod_harris_open", + "shortId": "bipod_harris_open", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attbipod" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attbipod" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.cobra_tactical", + "shortId": "cobra_tactical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.fortis_shift", + "shortId": "fortis_shift", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.hera_arms", + "shortId": "hera_arms", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.hk_sturmgriff", + "shortId": "hk_sturmgriff", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.kac_vertical_grip", + "shortId": "kac_vertical_grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.keymod_sig", + "shortId": "keymod_sig", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.keymod_sig_vertical", + "shortId": "keymod_sig_vertical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.keymod_vertical", + "shortId": "keymod_vertical", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.m16_hg_launcher", + "shortId": "m16_hg_launcher", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.m_lok_magpul", + "shortId": "m_lok_magpul", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.magpul_afg", + "shortId": "magpul_afg", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.magpul_rvg", + "shortId": "magpul_rvg", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.mount_rail", + "shortId": "mount_rail", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [], + "placements": [], + "aggregatedPlacements": [] + }, + { + "item": "Base.pistol_shotgun", + "shortId": "pistol_shotgun", + "category": "firearm", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_pistol" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PoliceLockers", + "weight": 0.1, + "sv": "prob_pistol" + }, + { + "list": "SecurityLockers", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreKnives", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GunStoreCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "PawnShopCases", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "GarageFirearms", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "BarCounterWeapon", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugLabGuns", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "DrugShackWeapons", + "weight": 0.5, + "sv": "prob_pistol" + }, + { + "list": "ClosetInstruments", + "weight": 0.005, + "sv": "prob_pistol" + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005, + "sv": "prob_pistol" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 0.5 + }, + { + "list": "ArmyStorageGuns", + "weight": 0.5 + }, + { + "list": "BarCounterWeapon", + "weight": 0.5 + }, + { + "list": "ClosetInstruments", + "weight": 0.005 + }, + { + "list": "ClosetShelfGeneric", + "weight": 0.005 + }, + { + "list": "DrugLabGuns", + "weight": 0.5 + }, + { + "list": "DrugShackWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Late", + "weight": 0.5 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 0.5 + }, + { + "list": "GarageFirearms", + "weight": 0.5 + }, + { + "list": "GunStoreCases", + "weight": 0.5 + }, + { + "list": "GunStoreKnives", + "weight": 0.5 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 0.5 + }, + { + "list": "GunStorePistols", + "weight": 0.5 + }, + { + "list": "PawnShopCases", + "weight": 0.5 + }, + { + "list": "PawnShopGuns", + "weight": 0.5 + }, + { + "list": "PoliceLockers", + "weight": 0.1 + }, + { + "list": "PoliceStorageGuns", + "weight": 0.5 + }, + { + "list": "SecurityLockers", + "weight": 0.5 + } + ] + }, + { + "item": "Base.pk_stock_plastic", + "shortId": "pk_stock_plastic", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.pk_stock_wood", + "shortId": "pk_stock_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.rtm_pillau", + "shortId": "rtm_pillau", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_bipod", + "shortId": "scrap_bipod", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attbipod" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attbipod" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_bipod_open", + "shortId": "scrap_bipod_open", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attbipod" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attbipod" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attbipod" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_grip_drill", + "shortId": "scrap_grip_drill", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_grip_screwdriver", + "shortId": "scrap_grip_screwdriver", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_mount", + "shortId": "scrap_mount", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_mount_shotgun", + "shortId": "scrap_mount_shotgun", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attmount" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attmount" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attmount" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_pipe_suppressor", + "shortId": "scrap_pipe_suppressor", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.scrap_stock", + "shortId": "scrap_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.stark_se", + "shortId": "stark_se", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.stock_pistol_fab", + "shortId": "stock_pistol_fab", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.sup2", + "shortId": "sup2", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_silencer" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PoliceLockers", + "weight": 0.5, + "sv": "prob_silencer" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_silencer" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_silencer" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 0.5 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.svd_handguard_xrs_drg", + "shortId": "svd_handguard_xrs_drg", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.svd_hg_plastic", + "shortId": "svd_hg_plastic", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.svd_hg_wood", + "shortId": "svd_hg_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.svd_stock_wood", + "shortId": "svd_stock_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.tango_down", + "shortId": "tango_down", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.vtac_uvg", + "shortId": "vtac_uvg", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_1886_hg_wood", + "shortId": "win_1886_hg_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_1886_stock_wood", + "shortId": "win_1886_stock_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_1895_stock", + "shortId": "win_1895_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_SWM1854_hg_wood", + "shortId": "win_SWM1854_hg_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_SWM1854_stock_wood", + "shortId": "win_SWM1854_stock_wood", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_archangel_handguard", + "shortId": "win_archangel_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_archangel_stock", + "shortId": "win_archangel_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_m1887_grip", + "shortId": "win_m1887_grip", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_m1887_stock", + "shortId": "win_m1887_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_mts_stock", + "shortId": "win_mts_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_sjorgen_stock", + "shortId": "win_sjorgen_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_swm1894_handguard", + "shortId": "win_swm1894_handguard", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_atthanguard" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_atthanguard" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_atthanguard" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.win_swm1894_stock", + "shortId": "win_swm1894_stock", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attstock" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attstock" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attstock" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.x2Scope", + "shortId": "x2Scope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.x4Scope", + "shortId": "x4Scope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.x8Scope", + "shortId": "x8Scope", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attscopes" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attscopes" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attscopes" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.zenit_b25u", + "shortId": "zenit_b25u", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.zenit_rk6", + "shortId": "zenit_rk6", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.zenit_rk_1", + "shortId": "zenit_rk_1", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + }, + { + "item": "Base.zenit_rk_5", + "shortId": "zenit_rk_5", + "category": "attachment", + "defaultEnabled": false, + "spawnControlKeys": [ + "prob_attgrips" + ], + "placements": [ + { + "list": "GunStorePistols", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PoliceLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "SecurityLockers", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageAmmunition", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "ArmyStorageGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "FirearmWeapons_Late", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreKnives", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GunStoreCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopGuns", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "PawnShopCases", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "GarageFirearms", + "weight": 1, + "sv": "prob_attgrips" + }, + { + "list": "BarCounterWeapon", + "weight": 1, + "sv": "prob_attgrips" + } + ], + "aggregatedPlacements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + }, + { + "list": "BarCounterWeapon", + "weight": 1 + }, + { + "list": "FirearmWeapons", + "weight": 1 + }, + { + "list": "FirearmWeapons_Late", + "weight": 1 + }, + { + "list": "FirearmWeapons_Mid", + "weight": 1 + }, + { + "list": "GarageFirearms", + "weight": 1 + }, + { + "list": "GunStoreCases", + "weight": 1 + }, + { + "list": "GunStoreKnives", + "weight": 1 + }, + { + "list": "GunStoreMagsAmmo", + "weight": 1 + }, + { + "list": "GunStorePistols", + "weight": 1 + }, + { + "list": "PawnShopCases", + "weight": 1 + }, + { + "list": "PawnShopGuns", + "weight": 1 + }, + { + "list": "PoliceLockers", + "weight": 1 + }, + { + "list": "PoliceStorageGuns", + "weight": 1 + }, + { + "list": "SecurityLockers", + "weight": 1 + } + ] + } + ] +} diff --git a/data/of-spawn-profile.sample.json b/data/of-spawn-profile.sample.json new file mode 100644 index 0000000..25c13c8 --- /dev/null +++ b/data/of-spawn-profile.sample.json @@ -0,0 +1,47 @@ +{ + "formatVersion": 1, + "entries": [ + { + "item": "Base.1P78", + "enabled": true, + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.1PN93_4", + "enabled": false, + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + } + ] + }, + { + "item": "Base.9x39_Silencer", + "enabled": true, + "placements": [ + { + "list": "ArmyStorageAmmunition", + "weight": 1 + }, + { + "list": "ArmyStorageGuns", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/mod.info b/mod.info new file mode 100644 index 0000000..f87a759 --- /dev/null +++ b/mod.info @@ -0,0 +1,8 @@ +name=Opinionated Firearms +id=opinionated_firearms +author=Riggs0 +modversion=1.0.0 +versionMin=42.12.13 +require=GaelGunStore_ALPHA + +description=Opinionated Firearms spawn distribution controller for GaelGunStore (B42). diff --git a/tools/ggs-dist-cli.js b/tools/ggs-dist-cli.js new file mode 100644 index 0000000..0b7008e --- /dev/null +++ b/tools/ggs-dist-cli.js @@ -0,0 +1,352 @@ +#!/usr/bin/env node +"use strict"; + +const fs = require("node:fs"); +const path = require("node:path"); + +function printUsage() { + console.log(` +Usage: + node tools/ggs-dist-cli.js extract [--ggs-root ] [--out ] + node tools/ggs-dist-cli.js apply --profile [--out ] + +Commands: + extract Build a full firearm/attachment spawn catalog from GaelGunStore. + apply Convert a webapp profile JSON into Lua used by the B42 mod patcher. +`.trim()); +} + +function parseArgs(argv) { + const args = { _: [] }; + for (let i = 0; i < argv.length; i += 1) { + const token = argv[i]; + if (token.startsWith("--")) { + const key = token.slice(2); + const next = argv[i + 1]; + if (!next || next.startsWith("--")) { + args[key] = true; + } else { + args[key] = next; + i += 1; + } + } else { + args._.push(token); + } + } + return args; +} + +function ensureDir(filePath) { + fs.mkdirSync(path.dirname(filePath), { recursive: true }); +} + +function readText(filePath) { + return fs.readFileSync(filePath, "utf8"); +} + +function writeText(filePath, content) { + ensureDir(filePath); + fs.writeFileSync(filePath, content, "utf8"); +} + +function walkFiles(rootDir, predicate, out) { + const entries = fs.readdirSync(rootDir, { withFileTypes: true }); + for (const entry of entries) { + const fullPath = path.join(rootDir, entry.name); + if (entry.isDirectory()) { + walkFiles(fullPath, predicate, out); + } else if (predicate(fullPath)) { + out.push(fullPath); + } + } +} + +function collectItemTypesFromScripts(rootDir) { + const files = []; + walkFiles(rootDir, (fullPath) => fullPath.toLowerCase().endsWith(".txt"), files); + const itemSet = new Set(); + const itemPattern = /^\s*item\s+([A-Za-z0-9_]+)/gm; + for (const filePath of files) { + const text = readText(filePath); + let match = itemPattern.exec(text); + while (match) { + itemSet.add(`Base.${match[1]}`); + match = itemPattern.exec(text); + } + } + return Array.from(itemSet).sort(); +} + +function parseLootEntries(lootLuaPath) { + const lootLua = readText(lootLuaPath); + const pattern = + /\{\s*list\s*=\s*"([^"]+)"\s*,\s*item\s*=\s*"([^"]+)"\s*,\s*weight\s*=\s*([0-9]+(?:\.[0-9]+)?)\s*,\s*sv\s*=\s*"([^"]+)"\s*\}/g; + const entries = []; + let match = pattern.exec(lootLua); + while (match) { + entries.push({ + list: match[1], + item: match[2], + weight: Number.parseFloat(match[3]), + sv: match[4], + }); + match = pattern.exec(lootLua); + } + return entries; +} + +function aggregatePlacements(entries) { + const placementMap = new Map(); + for (const entry of entries) { + const previous = placementMap.get(entry.list) || 0; + placementMap.set(entry.list, previous + entry.weight); + } + return Array.from(placementMap.entries()) + .map(([list, weight]) => ({ list, weight: Number(weight.toFixed(6)) })) + .sort((a, b) => a.list.localeCompare(b.list)); +} + +function normalizeItemType(item) { + if (typeof item !== "string") { + return null; + } + const trimmed = item.trim(); + if (!trimmed) { + return null; + } + return trimmed.includes(".") ? trimmed : `Base.${trimmed}`; +} + +function buildCatalog(ggsRoot) { + const cwd = process.cwd(); + const firearmScriptsDir = path.join(ggsRoot, "media", "scripts", "Firearms"); + const attachmentScriptsDir = path.join(ggsRoot, "media", "scripts", "GunPartItem"); + const lootLuaPath = path.join(ggsRoot, "media", "lua", "server", "item", "loot.lua"); + + if (!fs.existsSync(firearmScriptsDir)) { + throw new Error(`Missing firearms scripts dir: ${firearmScriptsDir}`); + } + if (!fs.existsSync(attachmentScriptsDir)) { + throw new Error(`Missing attachments scripts dir: ${attachmentScriptsDir}`); + } + if (!fs.existsSync(lootLuaPath)) { + throw new Error(`Missing loot file: ${lootLuaPath}`); + } + + const firearms = collectItemTypesFromScripts(firearmScriptsDir); + const attachments = collectItemTypesFromScripts(attachmentScriptsDir); + const firearmSet = new Set(firearms); + const attachmentSet = new Set(attachments); + + const lootEntries = parseLootEntries(lootLuaPath); + const perItemLoot = new Map(); + const allLists = new Set(); + const allItems = new Set([...firearms, ...attachments]); + + for (const entry of lootEntries) { + const normalized = normalizeItemType(entry.item); + if (!normalized) { + continue; + } + if (!allItems.has(normalized)) { + continue; + } + allLists.add(entry.list); + + const existing = perItemLoot.get(normalized) || []; + existing.push({ + list: entry.list, + weight: entry.weight, + sv: entry.sv, + }); + perItemLoot.set(normalized, existing); + } + + const items = Array.from(allItems) + .sort() + .map((itemType) => { + const placements = perItemLoot.get(itemType) || []; + const aggregatedPlacements = aggregatePlacements(placements); + const svKeys = Array.from(new Set(placements.map((p) => p.sv))).sort(); + let category = "unknown"; + if (firearmSet.has(itemType)) { + category = "firearm"; + } else if (attachmentSet.has(itemType)) { + category = "attachment"; + } + + return { + item: itemType, + shortId: itemType.replace(/^Base\./, ""), + category, + defaultEnabled: false, + spawnControlKeys: svKeys, + placements, + aggregatedPlacements, + }; + }); + + return { + formatVersion: 1, + generatedAt: new Date().toISOString(), + source: { + ggsRoot: path.relative(cwd, path.resolve(ggsRoot)) || ".", + lootLuaPath: path.relative(cwd, path.resolve(lootLuaPath)), + firearmScriptsDir: path.relative(cwd, path.resolve(firearmScriptsDir)), + attachmentScriptsDir: path.relative(cwd, path.resolve(attachmentScriptsDir)), + }, + notes: { + spawnRateFormula: "effectiveWeight = baseWeight * lootAmountMultiplier * SandboxVars[sv]", + lootAmountMultiplierLookup: [0, 0.25, 0.5, 1, 2, 4], + }, + counts: { + firearms: firearms.length, + attachments: attachments.length, + totalItems: items.length, + placementRows: lootEntries.length, + distributionLists: allLists.size, + }, + lists: Array.from(allLists).sort(), + items, + }; +} + +function formatLuaString(value) { + return `"${String(value).replace(/\\/g, "\\\\").replace(/"/g, '\\"')}"`; +} + +function toLuaProfile(profileJson) { + if (!profileJson || !Array.isArray(profileJson.entries)) { + throw new Error("Profile JSON must contain an entries array."); + } + + const itemsMap = new Map(); + for (const rawEntry of profileJson.entries) { + const itemType = normalizeItemType(rawEntry && rawEntry.item); + if (!itemType) { + continue; + } + + const enabled = rawEntry.enabled !== false; + const placements = {}; + + if (Array.isArray(rawEntry.placements)) { + for (const placement of rawEntry.placements) { + const listName = + placement && typeof placement.list === "string" ? placement.list.trim() : ""; + const weight = Number.parseFloat(placement && placement.weight); + if (!listName || !Number.isFinite(weight) || weight <= 0) { + continue; + } + placements[listName] = Number(weight.toFixed(6)); + } + } else if (rawEntry && typeof rawEntry.placements === "object" && rawEntry.placements) { + for (const [listName, rawWeight] of Object.entries(rawEntry.placements)) { + const cleanList = listName.trim(); + const weight = Number.parseFloat(rawWeight); + if (!cleanList || !Number.isFinite(weight) || weight <= 0) { + continue; + } + placements[cleanList] = Number(weight.toFixed(6)); + } + } + + itemsMap.set(itemType, { + enabled, + placements, + }); + } + + const itemTypes = Array.from(itemsMap.keys()).sort(); + const lines = []; + lines.push("-- Auto-generated by tools/ggs-dist-cli.js apply"); + lines.push(`-- Generated at: ${new Date().toISOString()}`); + lines.push("return {"); + lines.push(" items = {"); + + for (const itemType of itemTypes) { + const config = itemsMap.get(itemType); + lines.push(` [${formatLuaString(itemType)}] = {`); + lines.push(` enabled = ${config.enabled ? "true" : "false"},`); + lines.push(" placements = {"); + + const listNames = Object.keys(config.placements).sort(); + for (const listName of listNames) { + const weight = config.placements[listName]; + lines.push(` [${formatLuaString(listName)}] = ${weight},`); + } + + lines.push(" },"); + lines.push(" },"); + } + + lines.push(" },"); + lines.push("}"); + lines.push(""); + return lines.join("\n"); +} + +function commandExtract(args) { + const cwd = process.cwd(); + const ggsRoot = path.resolve(cwd, args["ggs-root"] || path.join("source", "GaelGunStore", "42")); + const outPath = path.resolve(cwd, args.out || path.join("data", "ggs-spawn-catalog.json")); + + const catalog = buildCatalog(ggsRoot); + writeText(outPath, `${JSON.stringify(catalog, null, 2)}\n`); + + console.log(`Extracted catalog: ${outPath}`); + console.log( + `Items=${catalog.counts.totalItems}, Firearms=${catalog.counts.firearms}, Attachments=${catalog.counts.attachments}, Lists=${catalog.counts.distributionLists}` + ); +} + +function commandApply(args) { + const cwd = process.cwd(); + const profilePath = args.profile ? path.resolve(cwd, args.profile) : null; + const outPath = path.resolve( + cwd, + args.out || path.join("common", "media", "lua", "shared", "OFSpawnProfile.lua") + ); + + if (!profilePath) { + throw new Error("Missing required --profile argument."); + } + if (!fs.existsSync(profilePath)) { + throw new Error(`Profile file not found: ${profilePath}`); + } + + const profileJson = JSON.parse(readText(profilePath)); + const luaProfile = toLuaProfile(profileJson); + writeText(outPath, luaProfile); + + console.log(`Applied profile to Lua: ${outPath}`); +} + +function main() { + const args = parseArgs(process.argv.slice(2)); + const command = args._[0]; + + if (!command || command === "help" || args.help) { + printUsage(); + return; + } + + if (command === "extract") { + commandExtract(args); + return; + } + + if (command === "apply") { + commandApply(args); + return; + } + + throw new Error(`Unknown command: ${command}`); +} + +try { + main(); +} catch (error) { + console.error(`[ggs-dist-cli] ${error.message}`); + process.exitCode = 1; +} diff --git a/webapp/app.js b/webapp/app.js new file mode 100644 index 0000000..90b9b2c --- /dev/null +++ b/webapp/app.js @@ -0,0 +1,557 @@ +"use strict"; + +const state = { + catalog: null, + profileByItem: {}, + selectedItem: null, +}; + +const dom = { + statusText: document.getElementById("statusText"), + catalogFile: document.getElementById("catalogFile"), + profileFile: document.getElementById("profileFile"), + exportProfile: document.getElementById("exportProfile"), + searchInput: document.getElementById("searchInput"), + categoryFilter: document.getElementById("categoryFilter"), + spawnFilter: document.getElementById("spawnFilter"), + itemTableBody: document.getElementById("itemTableBody"), + selectedDetails: document.getElementById("selectedDetails"), + resetSelected: document.getElementById("resetSelected"), +}; + +function setStatus(text) { + dom.statusText.textContent = text; +} + +function readFileText(file) { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.onload = () => resolve(String(reader.result || "")); + reader.onerror = () => reject(new Error(`Failed to read ${file.name}`)); + reader.readAsText(file); + }); +} + +function safeNumber(value, fallback = 0) { + const n = Number.parseFloat(value); + return Number.isFinite(n) ? n : fallback; +} + +function normalizeItemType(item) { + if (typeof item !== "string") { + return null; + } + const trimmed = item.trim(); + if (!trimmed) { + return null; + } + return trimmed.includes(".") ? trimmed : `Base.${trimmed}`; +} + +function normalizeCatalog(raw) { + if (!raw || !Array.isArray(raw.items)) { + throw new Error("Invalid catalog format. Missing items array."); + } + + const lists = new Set(Array.isArray(raw.lists) ? raw.lists : []); + const items = []; + + for (const rawItem of raw.items) { + const itemType = normalizeItemType(rawItem.item); + if (!itemType) { + continue; + } + + const aggregated = Array.isArray(rawItem.aggregatedPlacements) + ? rawItem.aggregatedPlacements + : []; + const placements = {}; + for (const placement of aggregated) { + const listName = placement && typeof placement.list === "string" ? placement.list.trim() : ""; + const weight = safeNumber(placement && placement.weight, 0); + if (!listName || weight <= 0) { + continue; + } + placements[listName] = Number(weight.toFixed(6)); + lists.add(listName); + } + + items.push({ + item: itemType, + shortId: typeof rawItem.shortId === "string" ? rawItem.shortId : itemType.replace(/^Base\./, ""), + category: typeof rawItem.category === "string" ? rawItem.category : "unknown", + defaultEnabled: rawItem.defaultEnabled !== false, + spawnControlKeys: Array.isArray(rawItem.spawnControlKeys) ? rawItem.spawnControlKeys : [], + defaultPlacements: placements, + }); + } + + items.sort((a, b) => a.item.localeCompare(b.item)); + return { + generatedAt: raw.generatedAt || null, + source: raw.source || {}, + items, + lists: Array.from(lists).sort(), + }; +} + +function initializeProfileFromCatalog() { + const profileByItem = {}; + for (const item of state.catalog.items) { + const placements = {}; + for (const [listName, weight] of Object.entries(item.defaultPlacements)) { + placements[listName] = weight; + } + profileByItem[item.item] = { + item: item.item, + category: item.category, + enabled: item.defaultEnabled, + placements, + }; + } + state.profileByItem = profileByItem; +} + +function getProfileEntry(itemType) { + return state.profileByItem[itemType] || null; +} + +function updateProfileEntry(itemType, updater) { + const current = getProfileEntry(itemType); + if (!current) { + return; + } + updater(current); +} + +function getFilteredItems() { + if (!state.catalog) { + return []; + } + const search = dom.searchInput.value.trim().toLowerCase(); + const category = dom.categoryFilter.value; + const spawnState = dom.spawnFilter.value; + + return state.catalog.items.filter((item) => { + const entry = getProfileEntry(item.item); + if (!entry) { + return false; + } + if (category !== "all" && item.category !== category) { + return false; + } + if (spawnState === "enabled" && !entry.enabled) { + return false; + } + if (spawnState === "disabled" && entry.enabled) { + return false; + } + if (!search) { + return true; + } + return ( + item.item.toLowerCase().includes(search) || + item.shortId.toLowerCase().includes(search) + ); + }); +} + +function renderItemTable() { + const filteredItems = getFilteredItems(); + dom.itemTableBody.innerHTML = ""; + + for (const item of filteredItems) { + const entry = getProfileEntry(item.item); + const row = document.createElement("tr"); + if (state.selectedItem === item.item) { + row.classList.add("selected"); + } + + const spawnTd = document.createElement("td"); + const spawnCheck = document.createElement("input"); + spawnCheck.type = "checkbox"; + spawnCheck.checked = entry.enabled; + spawnCheck.addEventListener("click", (event) => event.stopPropagation()); + spawnCheck.addEventListener("change", () => { + updateProfileEntry(item.item, (target) => { + target.enabled = spawnCheck.checked; + }); + renderItemTable(); + renderSelectedDetails(); + }); + spawnTd.appendChild(spawnCheck); + + const itemTd = document.createElement("td"); + itemTd.textContent = item.shortId; + + const categoryTd = document.createElement("td"); + categoryTd.textContent = item.category; + + const listsTd = document.createElement("td"); + listsTd.textContent = String(Object.keys(entry.placements).length); + + row.appendChild(spawnTd); + row.appendChild(itemTd); + row.appendChild(categoryTd); + row.appendChild(listsTd); + + row.addEventListener("click", () => { + state.selectedItem = item.item; + renderItemTable(); + renderSelectedDetails(); + }); + + dom.itemTableBody.appendChild(row); + } +} + +function renderPlacementsTable(item, entry, container) { + const table = document.createElement("table"); + table.className = "placements-table"; + const thead = document.createElement("thead"); + thead.innerHTML = "ListWeight"; + table.appendChild(thead); + + const tbody = document.createElement("tbody"); + const placementNames = Object.keys(entry.placements).sort(); + + for (const listName of placementNames) { + const weight = entry.placements[listName]; + const tr = document.createElement("tr"); + + const listTd = document.createElement("td"); + listTd.textContent = listName; + + const weightTd = document.createElement("td"); + const weightInput = document.createElement("input"); + weightInput.type = "number"; + weightInput.min = "0"; + weightInput.step = "0.001"; + weightInput.value = String(weight); + weightInput.addEventListener("change", () => { + const next = safeNumber(weightInput.value, 0); + if (next <= 0) { + delete entry.placements[listName]; + } else { + entry.placements[listName] = Number(next.toFixed(6)); + } + renderItemTable(); + renderSelectedDetails(); + }); + weightTd.appendChild(weightInput); + + const actionTd = document.createElement("td"); + const removeBtn = document.createElement("button"); + removeBtn.type = "button"; + removeBtn.className = "small-btn remove"; + removeBtn.textContent = "Remove"; + removeBtn.addEventListener("click", () => { + delete entry.placements[listName]; + renderItemTable(); + renderSelectedDetails(); + }); + actionTd.appendChild(removeBtn); + + tr.appendChild(listTd); + tr.appendChild(weightTd); + tr.appendChild(actionTd); + tbody.appendChild(tr); + } + + table.appendChild(tbody); + container.appendChild(table); +} + +function renderSelectedDetails() { + const selected = state.selectedItem; + dom.selectedDetails.innerHTML = ""; + + if (!state.catalog || !selected) { + dom.selectedDetails.textContent = "Select an item to edit placements and spawn rate."; + dom.selectedDetails.className = "details-empty"; + return; + } + + const item = state.catalog.items.find((it) => it.item === selected); + const entry = getProfileEntry(selected); + if (!item || !entry) { + dom.selectedDetails.textContent = "Selected item not found."; + dom.selectedDetails.className = "details-empty"; + return; + } + + dom.selectedDetails.className = "details-body"; + + const itemHeader = document.createElement("div"); + itemHeader.className = "item-header"; + itemHeader.innerHTML = ` +
+

${item.item}

+ ${item.category} +
+ `; + dom.selectedDetails.appendChild(itemHeader); + + const enabledRow = document.createElement("div"); + enabledRow.className = "inline-row"; + const enabledInput = document.createElement("input"); + enabledInput.type = "checkbox"; + enabledInput.checked = entry.enabled; + enabledInput.addEventListener("change", () => { + entry.enabled = enabledInput.checked; + renderItemTable(); + }); + + const enabledLabel = document.createElement("label"); + enabledLabel.textContent = "Spawn enabled"; + enabledLabel.prepend(enabledInput); + enabledLabel.style.display = "inline-flex"; + enabledLabel.style.alignItems = "center"; + enabledLabel.style.gap = "0.35rem"; + enabledRow.appendChild(enabledLabel); + dom.selectedDetails.appendChild(enabledRow); + + const placementsLabel = document.createElement("p"); + placementsLabel.textContent = "Placements (distribution list + spawn rate weight):"; + placementsLabel.style.margin = "0 0 0.4rem"; + dom.selectedDetails.appendChild(placementsLabel); + + renderPlacementsTable(item, entry, dom.selectedDetails); + + const addRow = document.createElement("div"); + addRow.className = "inline-row"; + + const listSelect = document.createElement("select"); + const usedLists = new Set(Object.keys(entry.placements)); + const availableLists = state.catalog.lists.filter((listName) => !usedLists.has(listName)); + for (const listName of availableLists) { + const option = document.createElement("option"); + option.value = listName; + option.textContent = listName; + listSelect.appendChild(option); + } + + const customInput = document.createElement("input"); + customInput.type = "text"; + customInput.placeholder = "or custom list name"; + + const weightInput = document.createElement("input"); + weightInput.type = "number"; + weightInput.min = "0"; + weightInput.step = "0.001"; + weightInput.value = "1"; + + const addButton = document.createElement("button"); + addButton.type = "button"; + addButton.className = "small-btn"; + addButton.textContent = "Add Placement"; + addButton.addEventListener("click", () => { + const custom = customInput.value.trim(); + const selectedList = custom || listSelect.value; + const weight = safeNumber(weightInput.value, 0); + if (!selectedList || weight <= 0) { + return; + } + entry.placements[selectedList] = Number(weight.toFixed(6)); + if (!state.catalog.lists.includes(selectedList)) { + state.catalog.lists.push(selectedList); + state.catalog.lists.sort(); + } + renderItemTable(); + renderSelectedDetails(); + }); + + addRow.appendChild(listSelect); + addRow.appendChild(customInput); + addRow.appendChild(weightInput); + addRow.appendChild(addButton); + dom.selectedDetails.appendChild(addRow); + + const resetRow = document.createElement("div"); + resetRow.className = "inline-row"; + + const restoreButton = document.createElement("button"); + restoreButton.type = "button"; + restoreButton.className = "small-btn"; + restoreButton.textContent = "Restore Catalog Placements"; + restoreButton.addEventListener("click", () => { + entry.enabled = item.defaultEnabled; + entry.placements = { ...item.defaultPlacements }; + renderItemTable(); + renderSelectedDetails(); + }); + + const clearButton = document.createElement("button"); + clearButton.type = "button"; + clearButton.className = "small-btn remove"; + clearButton.textContent = "Clear Placements"; + clearButton.addEventListener("click", () => { + entry.placements = {}; + renderItemTable(); + renderSelectedDetails(); + }); + + resetRow.appendChild(restoreButton); + resetRow.appendChild(clearButton); + dom.selectedDetails.appendChild(resetRow); + + const meta = document.createElement("p"); + meta.className = "meta"; + meta.innerHTML = ` + Sandbox weight controls: ${item.spawnControlKeys.length ? item.spawnControlKeys.join(", ") : "none"}
+ Catalog list count: ${Object.keys(item.defaultPlacements).length} + `; + dom.selectedDetails.appendChild(meta); +} + +function buildExportProfile() { + const entries = Object.keys(state.profileByItem) + .sort() + .map((itemType) => { + const entry = state.profileByItem[itemType]; + const placements = Object.keys(entry.placements) + .sort() + .map((listName) => ({ + list: listName, + weight: Number(entry.placements[listName]), + })); + return { + item: itemType, + category: entry.category, + enabled: entry.enabled, + placements, + }; + }); + + return { + formatVersion: 1, + generatedAt: new Date().toISOString(), + sourceCatalog: { + generatedAt: state.catalog ? state.catalog.generatedAt : null, + source: state.catalog ? state.catalog.source : {}, + }, + entries, + }; +} + +function downloadTextFile(fileName, content) { + const blob = new Blob([content], { type: "application/json" }); + const url = URL.createObjectURL(blob); + const anchor = document.createElement("a"); + anchor.href = url; + anchor.download = fileName; + anchor.click(); + URL.revokeObjectURL(url); +} + +async function onCatalogFileSelected() { + const file = dom.catalogFile.files[0]; + if (!file) { + return; + } + + try { + const text = await readFileText(file); + const rawCatalog = JSON.parse(text); + state.catalog = normalizeCatalog(rawCatalog); + initializeProfileFromCatalog(); + state.selectedItem = state.catalog.items.length ? state.catalog.items[0].item : null; + setStatus( + `Catalog loaded (${state.catalog.items.length} items, ${state.catalog.lists.length} lists).` + ); + renderItemTable(); + renderSelectedDetails(); + } catch (error) { + setStatus(`Catalog load failed: ${error.message}`); + } finally { + dom.catalogFile.value = ""; + } +} + +async function onProfileFileSelected() { + if (!state.catalog) { + setStatus("Load a catalog first."); + dom.profileFile.value = ""; + return; + } + + const file = dom.profileFile.files[0]; + if (!file) { + return; + } + + try { + const text = await readFileText(file); + const raw = JSON.parse(text); + if (!Array.isArray(raw.entries)) { + throw new Error("Profile must contain an entries array."); + } + + for (const row of raw.entries) { + const itemType = normalizeItemType(row.item); + if (!itemType || !state.profileByItem[itemType]) { + continue; + } + const entry = state.profileByItem[itemType]; + entry.enabled = row.enabled !== false; + entry.placements = {}; + if (Array.isArray(row.placements)) { + for (const placement of row.placements) { + const listName = + placement && typeof placement.list === "string" ? placement.list.trim() : ""; + const weight = safeNumber(placement && placement.weight, 0); + if (!listName || weight <= 0) { + continue; + } + entry.placements[listName] = Number(weight.toFixed(6)); + if (!state.catalog.lists.includes(listName)) { + state.catalog.lists.push(listName); + } + } + } + } + + state.catalog.lists.sort(); + setStatus("Profile loaded and applied to current catalog."); + renderItemTable(); + renderSelectedDetails(); + } catch (error) { + setStatus(`Profile load failed: ${error.message}`); + } finally { + dom.profileFile.value = ""; + } +} + +function onExportProfile() { + if (!state.catalog) { + setStatus("Load a catalog before exporting."); + return; + } + const payload = buildExportProfile(); + downloadTextFile("of-spawn-profile.json", `${JSON.stringify(payload, null, 2)}\n`); + setStatus("Profile exported."); +} + +function onResetSelected() { + if (!state.catalog || !state.selectedItem) { + return; + } + const item = state.catalog.items.find((it) => it.item === state.selectedItem); + const entry = getProfileEntry(state.selectedItem); + if (!item || !entry) { + return; + } + entry.enabled = item.defaultEnabled; + entry.placements = { ...item.defaultPlacements }; + renderItemTable(); + renderSelectedDetails(); + setStatus(`Reset ${item.shortId} to catalog defaults.`); +} + +dom.catalogFile.addEventListener("change", onCatalogFileSelected); +dom.profileFile.addEventListener("change", onProfileFileSelected); +dom.exportProfile.addEventListener("click", onExportProfile); +dom.searchInput.addEventListener("input", renderItemTable); +dom.categoryFilter.addEventListener("change", renderItemTable); +dom.spawnFilter.addEventListener("change", renderItemTable); +dom.resetSelected.addEventListener("click", onResetSelected); diff --git a/webapp/index.html b/webapp/index.html new file mode 100644 index 0000000..5ad8841 --- /dev/null +++ b/webapp/index.html @@ -0,0 +1,77 @@ + + + + + + Opinionated Firearms Spawn List Builder + + + +
+
+

Opinionated Firearms Spawn List Builder

+

Edit firearm/attachment spawn enablement, placement lists, and spawn rates.

+
+
+ + + +
+
+ +
+ Load an extracted catalog JSON to begin. +
+ +
+
+
+

Items

+
+ + + +
+
+
+ + + + + + + + + + +
SpawnItemCategorySpawn Loacation
+
+
+ +
+
+

Selected Item

+ +
+
Select an item to edit placements and spawn rate.
+
+
+ + + + diff --git a/webapp/styles.css b/webapp/styles.css new file mode 100644 index 0000000..163579a --- /dev/null +++ b/webapp/styles.css @@ -0,0 +1,263 @@ +:root { + --bg: #f4efe6; + --panel: #fffaf1; + --panel-2: #f8f0e2; + --line: #d8ccb8; + --text: #2f2418; + --muted: #7d6852; + --accent: #9c3f1f; + --accent-2: #4f6f52; + --focus: #c77800; +} + +* { + box-sizing: border-box; +} + +body { + margin: 0; + font-family: "Trebuchet MS", "Segoe UI", sans-serif; + color: var(--text); + background: + radial-gradient(1200px 700px at 95% 0%, #e2c8a0 0%, transparent 60%), + linear-gradient(145deg, #f8f2e7 0%, var(--bg) 100%); + min-height: 100vh; +} + +.topbar { + display: flex; + justify-content: space-between; + align-items: flex-end; + gap: 1rem; + padding: 1.1rem 1.3rem 1rem; + border-bottom: 1px solid var(--line); + background: rgba(255, 250, 241, 0.8); + backdrop-filter: blur(2px); +} + +.topbar h1 { + margin: 0; + font-size: 1.3rem; + letter-spacing: 0.04em; +} + +.topbar p { + margin: 0.25rem 0 0; + color: var(--muted); + font-size: 0.9rem; +} + +.actions { + display: flex; + align-items: center; + gap: 0.55rem; + flex-wrap: wrap; + justify-content: flex-end; +} + +.file-button, +button { + border: 1px solid var(--accent); + color: #fff; + background: var(--accent); + padding: 0.48rem 0.75rem; + border-radius: 0.5rem; + cursor: pointer; + font-size: 0.85rem; + font-weight: 600; +} + +.file-button.secondary { + border-color: var(--accent-2); + background: var(--accent-2); +} + +.file-button input { + display: none; +} + +button:hover, +.file-button:hover { + filter: brightness(1.05); +} + +button:focus-visible, +.file-button:focus-within { + outline: 2px solid var(--focus); + outline-offset: 2px; +} + +.status { + padding: 0.5rem 1.3rem; + font-size: 0.88rem; + color: var(--muted); + border-bottom: 1px solid var(--line); +} + +.layout { + display: grid; + grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr); + gap: 1rem; + padding: 1rem 1.3rem 1.3rem; +} + +.panel { + background: var(--panel); + border: 1px solid var(--line); + border-radius: 0.8rem; + min-height: 66vh; + display: flex; + flex-direction: column; +} + +.panel-head { + display: flex; + justify-content: space-between; + align-items: center; + gap: 0.75rem; + padding: 0.75rem 0.8rem; + border-bottom: 1px solid var(--line); + background: var(--panel-2); +} + +.panel-head h2 { + margin: 0; + font-size: 1rem; +} + +.filters { + display: flex; + gap: 0.45rem; + flex-wrap: wrap; +} + +input[type="search"], +select, +input[type="number"], +input[type="text"] { + border: 1px solid var(--line); + background: #fff; + color: var(--text); + border-radius: 0.45rem; + padding: 0.35rem 0.45rem; + font-size: 0.85rem; +} + +input:focus-visible, +select:focus-visible { + outline: 2px solid var(--focus); + outline-offset: 1px; +} + +.table-wrap { + overflow: auto; + flex: 1 1 auto; +} + +table { + width: 100%; + border-collapse: collapse; +} + +th, +td { + text-align: left; + padding: 0.45rem 0.55rem; + border-bottom: 1px solid var(--line); + font-size: 0.83rem; + vertical-align: middle; +} + +tbody tr { + cursor: pointer; +} + +tbody tr:hover { + background: #fff2de; +} + +tbody tr.selected { + background: #f9dfbc; +} + +.details-panel { + overflow: hidden; +} + +.details-body { + padding: 0.8rem; + overflow: auto; +} + +.details-empty { + padding: 1.1rem; + color: var(--muted); + font-size: 0.9rem; +} + +.item-header { + display: flex; + justify-content: space-between; + align-items: center; + gap: 0.6rem; + margin-bottom: 0.7rem; +} + +.item-title { + margin: 0; + font-size: 1rem; +} + +.badge { + border: 1px solid var(--line); + border-radius: 999px; + padding: 0.15rem 0.5rem; + font-size: 0.75rem; + color: var(--muted); +} + +.inline-row { + display: flex; + gap: 0.5rem; + align-items: center; + flex-wrap: wrap; + margin-bottom: 0.65rem; +} + +.placements-table th, +.placements-table td { + font-size: 0.8rem; + padding: 0.34rem 0.4rem; +} + +.small-btn { + border: 1px solid var(--line); + background: #fff; + color: var(--text); + border-radius: 0.35rem; + padding: 0.2rem 0.45rem; + font-size: 0.75rem; + cursor: pointer; +} + +.small-btn.remove { + border-color: #b74a38; + color: #8f2617; +} + +.meta { + margin: 0.7rem 0 0; + color: var(--muted); + font-size: 0.78rem; + line-height: 1.4; +} + +@media (max-width: 980px) { + .layout { + grid-template-columns: 1fr; + } + + .panel { + min-height: 45vh; + } +}