diff --git a/.env.example b/.env.example index ce44122..d448b6d 100644 --- a/.env.example +++ b/.env.example @@ -57,9 +57,10 @@ VITE_PUSHER_PORT="${PUSHER_PORT}" VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" FORCE_PROTOCOL = 'https' - +DEFAULT_THEME_DARK = true ## ==============Modules===================#### RANKS="Disabled" #Enabled - to enable module Disabled - to disable module VIP="Disabled" +SKINS="Disabled" ## ==============END========================### diff --git a/app/Http/Controllers/BansController.php b/app/Http/Controllers/BansController.php index 210aeb4..80c434a 100644 --- a/app/Http/Controllers/BansController.php +++ b/app/Http/Controllers/BansController.php @@ -171,7 +171,9 @@ public function store(Request $request) foreach ($validatedData['server_ids'] as $serverId) { $existingBan = SaBan::where(function ($query) use ($steamId, $playerIp, $serverId) { $query->where('player_steamid', $steamId) - ->orWhere('player_ip', $playerIp); + ->when(!empty($playerIp), function ($query) use ($playerIp) { + return $query->orWhere('player_ip', $playerIp); + }); }) ->where('server_id', $serverId) ->where('status', 'ACTIVE') diff --git a/app/Http/Controllers/VIP/VIPController.php b/app/Http/Controllers/VIP/VIPController.php index 5f2d8bd..d945025 100644 --- a/app/Http/Controllers/VIP/VIPController.php +++ b/app/Http/Controllers/VIP/VIPController.php @@ -84,7 +84,7 @@ public function index(Request $request) 'player_nick' => $vip->name, 'sid' => $serverName, 'group' => $vip->group, - 'expires' => Carbon::createFromTimestamp($vip->expires)->toDateTimeString(), + 'expires' => empty($vip->expires) ? "
Never Expires
" : Carbon::createFromTimestamp($vip->expires)->toDateTimeString(), 'action' => $editAction . ' ' . $deleteAction, 'steam_profile' => $steamProfileLink ? "$profileName" : '', 'avatar' => !empty($response['response']['players'][0]['avatar']) ? $response['response']['players'][0]['avatar'] : 'https://mdbootstrap.com/img/Photos/Avatars/img(32).jpg' , diff --git a/app/Http/Controllers/WeaponSkinController.php b/app/Http/Controllers/WeaponSkinController.php new file mode 100644 index 0000000..aa58a95 --- /dev/null +++ b/app/Http/Controllers/WeaponSkinController.php @@ -0,0 +1,298 @@ +where('steamid', Auth::user()?->steam_id)->get(); + + // Group skins by weapon types dynamically + $weaponTypes = []; + foreach ($skins as $skin) { + $weaponType = explode('_', $skin['weapon_name'])[1]; // Extract weapon type + if (!isset($weaponTypes[$weaponType])) { + $weaponTypes[$weaponType] = []; + } + + // Mark skin as applied if it exists in appliedSkins + $skin['is_applied'] = $appliedSkins->contains(function ($value) use ($skin) { + return $value->weapon_defindex == $skin['weapon_defindex'] && $value->weapon_paint_id == $skin['paint']; + }); + + $weaponTypes[$weaponType][] = $skin; + } + + // Sort applied skins to be first in each category + foreach ($weaponTypes as $type => $skins) { + usort($skins, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + $weaponTypes[$type] = $skins; + } + + return view('weapons.skins', compact('weaponTypes')); + } + + public function load($type) + { + $skins = json_decode(File::get(resource_path('json/skins.json')), true); + $appliedSkins = DB::table('wp_player_skins')->where('steamid', Auth::user()?->steam_id)->get(); + + $filteredSkins = array_filter($skins, function($skin) use ($type) { + return str_contains(strtolower($skin['weapon_name']), strtolower($type)); + }); + + // Mark skin as applied if it exists in appliedSkins + foreach ($filteredSkins as &$skin) { + $skin['is_applied'] = $appliedSkins->contains(function ($value) use ($skin) { + return $value->weapon_defindex == $skin['weapon_defindex'] && $value->weapon_paint_id == $skin['paint']; + }); + } + + // Sort applied skins to be first + usort($filteredSkins, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + + return view('weapons.partials.weapon-types', ['skins' => $filteredSkins]); + } + public function applySkin(Request $request) + { + $validator = Validator::make($request->all(), [ + 'steamid' => 'required|string', + 'weapon_defindex' => 'required|integer', + 'weapon_paint_id' => 'required|integer', + 'wearSelect' => 'required|numeric', + 'wear' => 'nullable|numeric', + 'seed' => 'nullable|integer', + ]); + if ($validator->fails()) { + return response()->json(['errors' => $validator->errors()], 422); + } + $validated = $validator->validated(); + DB::table('wp_player_skins')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + 'weapon_defindex' => $validated['weapon_defindex'], + ], + [ + 'weapon_paint_id' => $validated['weapon_paint_id'], + 'weapon_wear' => $validated['wearSelect'], + 'weapon_seed' => $validated['seed'] ?? 0, + ] + ); + + return response()->json(['success' => 'Skin applied successfully!']); + } + + + public function agents() + { + $agents = json_decode(File::get(resource_path('json/agents.json')), true); + + // Fetch applied agents from the database + $appliedAgents = DB::table('wp_player_agents')->where('steamid', Auth::user()?->steam_id)->first(); + + foreach ($agents as &$agent) { + if ($appliedAgents) { + $agent['is_applied'] = ($agent['team'] == 2 && $agent['model'] == $appliedAgents->agent_t) || ($agent['team'] == 3 && $agent['model'] == $appliedAgents->agent_ct); + } else { + $agent['is_applied'] = false; + } + } + + // Sort applied agents to be first + usort($agents, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + + return view('weapons.agents', ['agents' => $agents]); + } + + public function gloves() + { + $gloves = json_decode(File::get(resource_path('json/gloves.json')), true); + + // Fetch applied gloves from the database + $appliedGloves = DB::table('wp_player_gloves')->where('steamid', Auth::user()?->steam_id)->get(); + // Group gloves by paint name prefix + $gloveTypes = []; + foreach ($gloves as $glove) { + $paintPrefix = explode(' | ', $glove['paint_name'])[0]; // Extract paint prefix + if (!isset($gloveTypes[$paintPrefix])) { + $gloveTypes[$paintPrefix] = []; + } + + // Mark glove as applied if it exists in appliedGloves + $glove['is_applied'] = $appliedGloves->contains(function ($value) use ($glove) { + return $value->weapon_defindex == $glove['weapon_defindex']; + }); + + $gloveTypes[$paintPrefix][] = $glove; + } + // Sort applied gloves to be first in each category + foreach ($gloveTypes as $type => $gloves) { + usort($gloves, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + $gloveTypes[$type] = $gloves; + } + + return view('weapons.gloves', compact('gloveTypes')); + } + public function loadGloves($type) + { + $gloves = json_decode(File::get(resource_path('json/gloves.json')), true); + $appliedGloves = DB::table('wp_player_gloves')->where('steamid', Auth::user()?->steam_id)->get(); + $filteredGloves = array_filter($gloves, function($glove) use ($type) { + return str_contains(strtolower($glove['paint_name']), strtolower($type)); + }); + + // Mark glove as applied if it exists in appliedGloves + foreach ($filteredGloves as &$glove) { + $glove['is_applied'] = $appliedGloves->contains(function ($value) use ($glove) { + return $value->weapon_defindex == $glove['weapon_defindex']; + }); + } + // Sort applied gloves to be first + usort($filteredGloves, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + + return view('weapons.partials.gloves-types', ['gloves' => $filteredGloves]); + } + + public function music() + { + $music = json_decode(File::get(resource_path('json/music.json')), true); + + // Fetch applied music from the database + $appliedMusic = DB::table('wp_player_music')->where('steamid', Auth::user()?->steam_id)->get(); + + foreach ($music as &$track) { + $track['is_applied'] = $appliedMusic->contains(function ($value) use ($track) { + return $value->music_id == $track['id']; + }); + } + + // Sort applied music to be first + usort($music, function($a, $b) { + return $b['is_applied'] - $a['is_applied']; + }); + + return view('weapons.music', ['music' => $music]); + } + + + public function applyAgent(Request $request) + { + $validator = Validator::make($request->all(), [ + 'steamid' => 'required|string', + 'team' => 'required|integer', + 'agent_name' => 'required|string', + ]); + + if ($validator->fails()) { + return response()->json(['errors' => $validator->errors()], 422); + } + + $validated = $validator->validated(); + + try { + DB::table('wp_player_agents')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + ], + [ + $validated['team'] == 2 ? 'agent_t' : 'agent_ct' => $validated['agent_name'], + ] + ); + + return response()->json(['success' => 'Agent skin applied successfully!']); + } catch (\Exception $e) { + return response()->json(['error' => 'An unexpected error occurred.'], 500); + } + } + + public function applyGlove(Request $request) + { + $validator = Validator::make($request->all(), [ + 'steamid' => 'required|string', + 'weapon_defindex' => 'required|integer', + ]); + + if ($validator->fails()) { + return response()->json(['errors' => $validator->errors()], 422); + } + + $validated = $validator->validated(); + + try { + DB::table('wp_player_gloves')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + ], + [ + 'weapon_defindex' => $validated['weapon_defindex'], + ] + ); + + return response()->json(['success' => 'Glove skin applied successfully!']); + } catch (\Exception $e) { + return response()->json(['error' => 'An unexpected error occurred.'], 500); + } + } + + public function applyMusic(Request $request) + { + $validated = $request->validate([ + 'steamid' => 'required|string', + 'music_id' => 'required|integer', + ]); + + DB::table('wp_player_music')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + ], + [ + 'music_id' => $validated['music_id'], + ] + ); + + return response()->json(['success' => 'Music applied successfully!']); + } + + public function applyKnife(Request $request) + { + $validated = $request->validate([ + 'steamid' => 'required|string', + 'weapon_name' => 'required|string', + ]); + + DB::table('wp_player_knife')->updateOrInsert( + [ + 'steamid' => $validated['steamid'], + ], + [ + 'knife' => $validated['weapon_name'], + ] + ); + + return response()->json(['success' => 'Knife applied successfully!']); + } + +} + + diff --git a/app/View/Components/WeaponsTab.php b/app/View/Components/WeaponsTab.php new file mode 100644 index 0000000..922172f --- /dev/null +++ b/app/View/Components/WeaponsTab.php @@ -0,0 +1,26 @@ + 'Skins', +]; diff --git a/resources/js/skins/agents.ts b/resources/js/skins/agents.ts new file mode 100644 index 0000000..4e1c578 --- /dev/null +++ b/resources/js/skins/agents.ts @@ -0,0 +1,35 @@ +document.addEventListener('DOMContentLoaded', function () { + const colorThief = new ColorThief(); + + document.querySelectorAll('.card.style-6 img').forEach(function (img) { + img.setAttribute('crossorigin', 'anonymous'); + if (img.complete) { + applyGlow(img); + } else { + img.addEventListener('load', function () { + applyGlow(img); + }); + } + }); + + function applyGlow(img) { + const color = colorThief.getColor(img); + const rgbColor = `rgb(${color[0]}, ${color[1]}, ${color[2]})`; + img.closest('.card').style.setProperty('--glow-color', rgbColor); + img.closest('.card').classList.add('glow'); + img.previousElementSibling.classList.add('d-none'); + } + + const skinPreviewModal = document.getElementById('skinPreviewModal'); + skinPreviewModal.addEventListener('show.bs.modal', function (event) { + const button = event.relatedTarget; + const skinImage = button.getAttribute('data-skin-image'); + const skinName = button.getAttribute('data-skin-name'); + + const modalImage = skinPreviewModal.querySelector('#skinPreviewImage'); + const modalName = skinPreviewModal.querySelector('#skinPreviewName'); + + modalImage.src = skinImage; + modalName.textContent = skinName; + }); +}); diff --git a/resources/js/skins/gloves.ts b/resources/js/skins/gloves.ts new file mode 100644 index 0000000..64375d3 --- /dev/null +++ b/resources/js/skins/gloves.ts @@ -0,0 +1,101 @@ +import {hideLoader, showLoader} from "../utility/utility"; + +document.addEventListener('DOMContentLoaded', function () { + const colorThief = new ColorThief(); + + function applyGlow(img) { + const color = colorThief.getColor(img); + const rgbColor = `rgb(${color[0]}, ${color[1]}, ${color[2]})`; + img.closest('.card').style.setProperty('--glow-color', rgbColor); + img.closest('.card').classList.add('glow'); + } + + document.querySelectorAll('.card.style-6 img').forEach(function (img) { + img.setAttribute('crossorigin', 'anonymous'); + if (img.complete) { + applyGlow(img); + img.previousElementSibling.classList.add('d-none'); // Hide loader if image is already loaded + } else { + img.addEventListener('load', function () { + applyGlow(img); + img.previousElementSibling.classList.add('d-none'); // Hide loader after image loads + }); + } + }); + + document.querySelectorAll('.glove-select-button').forEach(button => { + button.addEventListener('click', function () { + const type = this.getAttribute('data-type'); + const targetTab = document.getElementById(`nav-${type}`); + const lazyContent = targetTab.querySelector('.lazy-load-content[data-type="' + type + '"]'); + + lazyContent.innerHTML = '
'; + fetch(glovesLoadUrl + type) + .then(response => response.text()) + .then(data => { + lazyContent.innerHTML = data; + lazyContent.querySelectorAll('img').forEach(img => { + img.classList.add('lazy'); + img.addEventListener('load', () => { + applyGlow(img); + img.previousElementSibling.classList.add('d-none'); // Hide loader after image loads + img.classList.add('loaded'); + }); + }); + targetTabAction(targetTab); + }); + + }); + }); + + // Event listener for glove preview modal + const glovePreviewModal = document.getElementById('glovePreviewModal'); + glovePreviewModal.addEventListener('show.bs.modal', function (event) { + const button = event.relatedTarget; + const gloveImage = button.getAttribute('data-skin-image'); + const gloveName = button.getAttribute('data-skin-name'); + + const modalImage = glovePreviewModal.querySelector('#glovePreviewImage'); + const modalName = glovePreviewModal.querySelector('#glovePreviewName'); + + modalImage.src = gloveImage; + modalName.textContent = gloveName; + }); + defaultLoad(); + function defaultLoad() { + showLoader('gloves_list_loader'); + const type = '★ Broken Fang Gloves'; + const targetTab = document.getElementById(`nav-${type}`); + const lazyContent = targetTab.querySelector('.lazy-load-content[data-type="' + type + '"]'); + + fetch(glovesLoadUrl + type) + .then(response => response.text()) + .then(data => { + lazyContent.innerHTML = data; + lazyContent.querySelectorAll('img').forEach(img => { + img.classList.add('lazy'); + img.addEventListener('load', () => { + applyGlow(img); + img.previousElementSibling.classList.add('d-none'); // Hide loader after image loads + img.classList.add('loaded'); + }); + }); + targetTabAction(targetTab); + hideLoader('gloves_list_loader'); + }); + } +}); + +function targetTabAction(targetTab) { + const currentActiveTab = document.querySelector('.tab-pane.show.active'); + if (currentActiveTab) { + currentActiveTab.classList.remove('show', 'active'); + } + targetTab.classList.add('show', 'active'); + + const currentActiveButton = document.querySelector('.nav-link.active'); + if (currentActiveButton) { + currentActiveButton.classList.remove('active'); + } + document.getElementById('glove-dropdown-tab').classList.add('active'); +} diff --git a/resources/js/skins/music.ts b/resources/js/skins/music.ts new file mode 100644 index 0000000..ca21ca7 --- /dev/null +++ b/resources/js/skins/music.ts @@ -0,0 +1,36 @@ +document.addEventListener('DOMContentLoaded', function () { + const colorThief = new ColorThief(); + + document.querySelectorAll('.card.style-6 img').forEach(function (img) { + img.setAttribute('crossorigin', 'anonymous'); + if (img.complete) { + applyGlow(img); + } else { + img.addEventListener('load', function () { + applyGlow(img); + }); + } + }); + + function applyGlow(img) { + const color = colorThief.getColor(img); + const rgbColor = `rgb(${color[0]}, ${color[1]}, ${color[2]})`; + img.closest('.card').style.setProperty('--glow-color', rgbColor); + img.closest('.card').classList.add('glow'); + img.previousElementSibling.classList.add('d-none'); + } + + const skinPreviewModal = document.getElementById('skinPreviewModal'); + skinPreviewModal.addEventListener('show.bs.modal', function (event) { + const button = event.relatedTarget; + const skinImage = button.getAttribute('data-skin-image'); + const skinName = button.getAttribute('data-skin-name'); + + const modalImage = skinPreviewModal.querySelector('#skinPreviewImage'); + const modalName = skinPreviewModal.querySelector('#skinPreviewName'); + + modalImage.src = skinImage; + modalName.textContent = skinName; + }); + +}); diff --git a/resources/js/skins/weapons.ts b/resources/js/skins/weapons.ts new file mode 100644 index 0000000..9342d07 --- /dev/null +++ b/resources/js/skins/weapons.ts @@ -0,0 +1,100 @@ +import {hideLoader, showLoader} from "../utility/utility"; + +const colorThief = new ColorThief(); + +function applyGlow(img) { + const color = colorThief.getColor(img); + const rgbColor = `rgb(${color[0]}, ${color[1]}, ${color[2]})`; + img.closest('.card').style.setProperty('--glow-color', rgbColor); + img.closest('.card').classList.add('glow'); + img.previousElementSibling.classList.add('d-none'); +} +document.addEventListener('DOMContentLoaded', function () { + document.querySelectorAll('.card.style-6 img').forEach(function (img) { + img.setAttribute('crossorigin', 'anonymous'); + if (img.complete) { + applyGlow(img); + } else { + img.addEventListener('load', function () { + applyGlow(img); + }); + } + }); + + const skinPreviewModal = document.getElementById('skinPreviewModal'); + skinPreviewModal.addEventListener('show.bs.modal', function (event) { + const button = event.relatedTarget; + const skinImage = button.getAttribute('data-skin-image'); + const skinName = button.getAttribute('data-skin-name'); + + const modalImage = skinPreviewModal.querySelector('#skinPreviewImage'); + const modalName = skinPreviewModal.querySelector('#skinPreviewName'); + + modalImage.src = skinImage; + modalName.textContent = skinName; + }); + + + // Lazy loading and AJAX content loading + document.querySelectorAll('.weapon-select-button').forEach(function (button) { + button.addEventListener('click', function () { + const type = this.getAttribute('data-type'); + const targetTab = document.querySelector('#weapon-' + type + '-pane'); + const lazyContent = targetTab.querySelector('.lazy-content[data-type="' + type + '"]'); + showLoader('skins_list_loader'); + $('.tab-pane.active').hide(); + fetch(weaponsLoadUrl + type) + .then(response => response.text()) + .then(data => { + lazyContent.innerHTML = data; + lazyContent.querySelectorAll('img').forEach(img => { + img.classList.add('lazy'); + img.addEventListener('load', () => { + applyGlow(img); + img.classList.add('loaded'); + }); + }); + hideLoader('skins_list_loader'); + $('.tab-pane.active').show(); + // Switch to the target tab + targetTabAction(targetTab); + }); + + }); + }); +}); + +function targetTabAction(targetTab) { + const currentActiveTab = document.querySelector('.tab-pane.show.active'); + currentActiveTab.classList.remove('show', 'active'); + targetTab.classList.add('show', 'active'); + + // Update active state of buttons + const currentActiveButton = document.querySelector('.nav-link.active'); + if (currentActiveButton) { + currentActiveButton.classList.remove('active'); + } + document.getElementById('weapon-dropdown-tab').classList.add('active'); +} +defaultLoad(); +function defaultLoad() { + showLoader('skins_list_loader'); + const defaultType = 'deagle'; + const defaultTargetTab = document.querySelector('#weapon-'+defaultType+'-pane'); + const defaultLazyContent = defaultTargetTab.querySelector('.lazy-content[data-type="' + defaultType + '"]'); + fetch(weaponsLoadUrl + defaultType) +.then(response => response.text()) + .then(data => { + defaultLazyContent.innerHTML = data; + defaultLazyContent.querySelectorAll('img').forEach(img => { + img.classList.add('lazy'); + img.addEventListener('load', () => { + applyGlow(img); + img.classList.add('loaded'); + }); + hideLoader('skins_list_loader'); + }); + // Switch to the target tab + targetTabAction(defaultTargetTab); + }); +} diff --git a/resources/json/agents.json b/resources/json/agents.json new file mode 100644 index 0000000..b6b7e2f --- /dev/null +++ b/resources/json/agents.json @@ -0,0 +1,386 @@ +[ + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5205.png", + "model": "null", + "agent_name": "Agent | Default" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4619.png", + "model": "null", + "agent_name": "Agent | Default" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4619.png", + "model": "ctm_st6/ctm_st6_variantj", + "agent_name": "'Blueberries' Buckshot | NSWC SEAL" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4680.png", + "model": "ctm_st6/ctm_st6_variantl", + "agent_name": "'Two Times' McCoy | TACP Cavalry" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4711.png", + "model": "ctm_swat/ctm_swat_variante", + "agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4712.png", + "model": "ctm_swat/ctm_swat_variantf", + "agent_name": "1st Lieutenant Farlow | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4713.png", + "model": "ctm_swat/ctm_swat_variantg", + "agent_name": "John 'Van Healen' Kask | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4714.png", + "model": "ctm_swat/ctm_swat_varianth", + "agent_name": "Bio-Haz Specialist | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4715.png", + "model": "ctm_swat/ctm_swat_varianti", + "agent_name": "Sergeant Bombson | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4716.png", + "model": "ctm_swat/ctm_swat_variantj", + "agent_name": "Chem-Haz Specialist | SWAT" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4718.png", + "model": "tm_balkan/tm_balkan_variantk", + "agent_name": "Rezan the Redshirt | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4726.png", + "model": "tm_professional/tm_professional_varf", + "agent_name": "Sir Bloody Miami Darryl | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4727.png", + "model": "tm_professional/tm_professional_varg", + "agent_name": "Safecracker Voltzmann | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4728.png", + "model": "tm_professional/tm_professional_varh", + "agent_name": "Little Kev | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4730.png", + "model": "tm_professional/tm_professional_varj", + "agent_name": "Getaway Sally | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4732.png", + "model": "tm_professional/tm_professional_vari", + "agent_name": "Number K | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4733.png", + "model": "tm_professional/tm_professional_varf1", + "agent_name": "Sir Bloody Silent Darryl | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4734.png", + "model": "tm_professional/tm_professional_varf2", + "agent_name": "Sir Bloody Skullhead Darryl | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4735.png", + "model": "tm_professional/tm_professional_varf3", + "agent_name": "Sir Bloody Darryl Royale | The Professionals" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4736.png", + "model": "tm_professional/tm_professional_varf4", + "agent_name": "Sir Bloody Loudmouth Darryl | The Professionals" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4749.png", + "model": "ctm_gendarmerie/ctm_gendarmerie_varianta", + "agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4750.png", + "model": "ctm_gendarmerie/ctm_gendarmerie_variantb", + "agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4751.png", + "model": "ctm_gendarmerie/ctm_gendarmerie_variantc", + "agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4752.png", + "model": "ctm_gendarmerie/ctm_gendarmerie_variantd", + "agent_name": "Aspirant | Gendarmerie Nationale" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4753.png", + "model": "ctm_gendarmerie/ctm_gendarmerie_variante", + "agent_name": "Officer Jacques Beltram | Gendarmerie Nationale" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4756.png", + "model": "ctm_swat/ctm_swat_variantk", + "agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4757.png", + "model": "ctm_diver/ctm_diver_varianta", + "agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4771.png", + "model": "ctm_diver/ctm_diver_variantb", + "agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4772.png", + "model": "ctm_diver/ctm_diver_variantc", + "agent_name": "Lieutenant Rex Krikey | SEAL Frogman" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4773.png", + "model": "tm_jungle_raider/tm_jungle_raider_varianta", + "agent_name": "Elite Trapper Solman | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4774.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantb", + "agent_name": "Crasswater The Forgotten | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4775.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantc", + "agent_name": "Arno The Overgrown | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4776.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantd", + "agent_name": "Col. Mangos Dabisi | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4777.png", + "model": "tm_jungle_raider/tm_jungle_raider_variante", + "agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4778.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantf", + "agent_name": "Trapper Aggressor | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4780.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantb2", + "agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-4781.png", + "model": "tm_jungle_raider/tm_jungle_raider_variantf2", + "agent_name": "Trapper | Guerrilla Warfare" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5105.png", + "model": "tm_leet/tm_leet_variantg", + "agent_name": "Ground Rebel | Elite Crew" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5106.png", + "model": "tm_leet/tm_leet_varianth", + "agent_name": "Osiris | Elite Crew" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5107.png", + "model": "tm_leet/tm_leet_varianti", + "agent_name": "Prof. Shahmat | Elite Crew" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5108.png", + "model": "tm_leet/tm_leet_variantf", + "agent_name": "The Elite Mr. Muhlik | Elite Crew" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5109.png", + "model": "tm_leet/tm_leet_variantj", + "agent_name": "Jungle Rebel | Elite Crew" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5205.png", + "model": "tm_phoenix/tm_phoenix_varianth", + "agent_name": "Soldier | Phoenix" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5206.png", + "model": "tm_phoenix/tm_phoenix_variantf", + "agent_name": "Enforcer | Phoenix" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5207.png", + "model": "tm_phoenix/tm_phoenix_variantg", + "agent_name": "Slingshot | Phoenix" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5208.png", + "model": "tm_phoenix/tm_phoenix_varianti", + "agent_name": "Street Soldier | Phoenix" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5305.png", + "model": "ctm_fbi/ctm_fbi_variantf", + "agent_name": "Operator | FBI SWAT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5306.png", + "model": "ctm_fbi/ctm_fbi_variantg", + "agent_name": "Markus Delrow | FBI HRT" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5307.png", + "model": "ctm_fbi/ctm_fbi_varianth", + "agent_name": "Michael Syfers | FBI Sniper" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5308.png", + "model": "ctm_fbi/ctm_fbi_variantb", + "agent_name": "Special Agent Ava | FBI" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5400.png", + "model": "ctm_st6/ctm_st6_variantk", + "agent_name": "3rd Commando Company | KSK" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5401.png", + "model": "ctm_st6/ctm_st6_variante", + "agent_name": "Seal Team 6 Soldier | NSWC SEAL" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5402.png", + "model": "ctm_st6/ctm_st6_variantg", + "agent_name": "Buckshot | NSWC SEAL" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5403.png", + "model": "ctm_st6/ctm_st6_variantm", + "agent_name": "'Two Times' McCoy | USAF TACP" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5404.png", + "model": "ctm_st6/ctm_st6_varianti", + "agent_name": "Lt. Commander Ricksaw | NSWC SEAL" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5405.png", + "model": "ctm_st6/ctm_st6_variantn", + "agent_name": "Primeiro Tenente | Brazilian 1st Battalion" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5500.png", + "model": "tm_balkan/tm_balkan_variantf", + "agent_name": "Dragomir | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5501.png", + "model": "tm_balkan/tm_balkan_varianti", + "agent_name": "Maximus | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5502.png", + "model": "tm_balkan/tm_balkan_variantg", + "agent_name": "Rezan The Ready | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5503.png", + "model": "tm_balkan/tm_balkan_variantj", + "agent_name": "Blackwolf | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5504.png", + "model": "tm_balkan/tm_balkan_varianth", + "agent_name": "'The Doctor' Romanov | Sabre" + }, + { + "team": 2, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5505.png", + "model": "tm_balkan/tm_balkan_variantl", + "agent_name": "Dragomir | Sabre Footsoldier" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5601.png", + "model": "ctm_sas/ctm_sas_variantf", + "agent_name": "B Squadron Officer | SAS" + }, + { + "team": 3, + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/agent-5602.png", + "model": "ctm_sas/ctm_sas_variantg", + "agent_name": "D Squadron Officer | NZSAS" + } +] diff --git a/resources/json/gloves.json b/resources/json/gloves.json new file mode 100644 index 0000000..05b0442 --- /dev/null +++ b/resources/json/gloves.json @@ -0,0 +1,440 @@ +[ + { + "weapon_defindex": 0, + "paint": "0", + "image": "https://static.wikia.nocookie.net/cswikia/images/0/06/Csgo_Ct_gloves.png", + "paint_name": "Gloves | Default" + }, + { + "weapon_defindex": 4725, + "paint": "10085", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png", + "paint_name": "★ Broken Fang Gloves | Jade" + }, + { + "weapon_defindex": 4725, + "paint": "10086", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png", + "paint_name": "★ Broken Fang Gloves | Yellow-banded" + }, + { + "weapon_defindex": 4725, + "paint": "10087", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png", + "paint_name": "★ Broken Fang Gloves | Needle Point" + }, + { + "weapon_defindex": 4725, + "paint": "10088", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png", + "paint_name": "★ Broken Fang Gloves | Unhinged" + }, + { + "weapon_defindex": 5027, + "paint": "10006", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png", + "paint_name": "★ Bloodhound Gloves | Charred" + }, + { + "weapon_defindex": 5027, + "paint": "10007", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png", + "paint_name": "★ Bloodhound Gloves | Snakebite" + }, + { + "weapon_defindex": 5027, + "paint": "10008", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png", + "paint_name": "★ Bloodhound Gloves | Bronzed" + }, + { + "weapon_defindex": 5027, + "paint": "10039", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png", + "paint_name": "★ Bloodhound Gloves | Guerrilla" + }, + { + "weapon_defindex": 5030, + "paint": "10018", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png", + "paint_name": "★ Sport Gloves | Superconductor" + }, + { + "weapon_defindex": 5030, + "paint": "10019", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png", + "paint_name": "★ Sport Gloves | Arid" + }, + { + "weapon_defindex": 5030, + "paint": "10037", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png", + "paint_name": "★ Sport Gloves | Pandora's Box" + }, + { + "weapon_defindex": 5030, + "paint": "10038", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png", + "paint_name": "★ Sport Gloves | Hedge Maze" + }, + { + "weapon_defindex": 5030, + "paint": "10045", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png", + "paint_name": "★ Sport Gloves | Amphibious" + }, + { + "weapon_defindex": 5030, + "paint": "10046", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png", + "paint_name": "★ Sport Gloves | Bronze Morph" + }, + { + "weapon_defindex": 5030, + "paint": "10047", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png", + "paint_name": "★ Sport Gloves | Omega" + }, + { + "weapon_defindex": 5030, + "paint": "10048", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png", + "paint_name": "★ Sport Gloves | Vice" + }, + { + "weapon_defindex": 5030, + "paint": "10073", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png", + "paint_name": "★ Sport Gloves | Slingshot" + }, + { + "weapon_defindex": 5030, + "paint": "10074", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png", + "paint_name": "★ Sport Gloves | Big Game" + }, + { + "weapon_defindex": 5030, + "paint": "10075", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png", + "paint_name": "★ Sport Gloves | Scarlet Shamagh" + }, + { + "weapon_defindex": 5030, + "paint": "10076", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png", + "paint_name": "★ Sport Gloves | Nocts" + }, + { + "weapon_defindex": 5031, + "paint": "10013", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png", + "paint_name": "★ Driver Gloves | Lunar Weave" + }, + { + "weapon_defindex": 5031, + "paint": "10015", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png", + "paint_name": "★ Driver Gloves | Convoy" + }, + { + "weapon_defindex": 5031, + "paint": "10016", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png", + "paint_name": "★ Driver Gloves | Crimson Weave" + }, + { + "weapon_defindex": 5031, + "paint": "10040", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png", + "paint_name": "★ Driver Gloves | Diamondback" + }, + { + "weapon_defindex": 5031, + "paint": "10041", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png", + "paint_name": "★ Driver Gloves | King Snake" + }, + { + "weapon_defindex": 5031, + "paint": "10042", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png", + "paint_name": "★ Driver Gloves | Imperial Plaid" + }, + { + "weapon_defindex": 5031, + "paint": "10043", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png", + "paint_name": "★ Driver Gloves | Overtake" + }, + { + "weapon_defindex": 5031, + "paint": "10044", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png", + "paint_name": "★ Driver Gloves | Racing Green" + }, + { + "weapon_defindex": 5031, + "paint": "10069", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png", + "paint_name": "★ Driver Gloves | Rezan the Red" + }, + { + "weapon_defindex": 5031, + "paint": "10070", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png", + "paint_name": "★ Driver Gloves | Snow Leopard" + }, + { + "weapon_defindex": 5031, + "paint": "10071", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png", + "paint_name": "★ Driver Gloves | Queen Jaguar" + }, + { + "weapon_defindex": 5031, + "paint": "10072", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png", + "paint_name": "★ Driver Gloves | Black Tie" + }, + { + "weapon_defindex": 5032, + "paint": "10009", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png", + "paint_name": "★ Hand Wraps | Leather" + }, + { + "weapon_defindex": 5032, + "paint": "10010", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png", + "paint_name": "★ Hand Wraps | Spruce DDPAT" + }, + { + "weapon_defindex": 5032, + "paint": "10021", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png", + "paint_name": "★ Hand Wraps | Slaughter" + }, + { + "weapon_defindex": 5032, + "paint": "10036", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png", + "paint_name": "★ Hand Wraps | Badlands" + }, + { + "weapon_defindex": 5032, + "paint": "10053", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png", + "paint_name": "★ Hand Wraps | Cobalt Skulls" + }, + { + "weapon_defindex": 5032, + "paint": "10054", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png", + "paint_name": "★ Hand Wraps | Overprint" + }, + { + "weapon_defindex": 5032, + "paint": "10055", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png", + "paint_name": "★ Hand Wraps | Duct Tape" + }, + { + "weapon_defindex": 5032, + "paint": "10056", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png", + "paint_name": "★ Hand Wraps | Arboreal" + }, + { + "weapon_defindex": 5032, + "paint": "10081", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png", + "paint_name": "★ Hand Wraps | Desert Shamagh" + }, + { + "weapon_defindex": 5032, + "paint": "10082", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png", + "paint_name": "★ Hand Wraps | Giraffe" + }, + { + "weapon_defindex": 5032, + "paint": "10083", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png", + "paint_name": "★ Hand Wraps | Constrictor" + }, + { + "weapon_defindex": 5032, + "paint": "10084", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png", + "paint_name": "★ Hand Wraps | CAUTION!" + }, + { + "weapon_defindex": 5033, + "paint": "10024", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png", + "paint_name": "★ Moto Gloves | Eclipse" + }, + { + "weapon_defindex": 5033, + "paint": "10026", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png", + "paint_name": "★ Moto Gloves | Spearmint" + }, + { + "weapon_defindex": 5033, + "paint": "10027", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png", + "paint_name": "★ Moto Gloves | Boom!" + }, + { + "weapon_defindex": 5033, + "paint": "10028", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png", + "paint_name": "★ Moto Gloves | Cool Mint" + }, + { + "weapon_defindex": 5033, + "paint": "10049", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png", + "paint_name": "★ Moto Gloves | POW!" + }, + { + "weapon_defindex": 5033, + "paint": "10050", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png", + "paint_name": "★ Moto Gloves | Turtle" + }, + { + "weapon_defindex": 5033, + "paint": "10051", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png", + "paint_name": "★ Moto Gloves | Transport" + }, + { + "weapon_defindex": 5033, + "paint": "10052", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png", + "paint_name": "★ Moto Gloves | Polygon" + }, + { + "weapon_defindex": 5033, + "paint": "10077", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png", + "paint_name": "★ Moto Gloves | Finish Line" + }, + { + "weapon_defindex": 5033, + "paint": "10078", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png", + "paint_name": "★ Moto Gloves | Smoke Out" + }, + { + "weapon_defindex": 5033, + "paint": "10079", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png", + "paint_name": "★ Moto Gloves | Blood Pressure" + }, + { + "weapon_defindex": 5033, + "paint": "10080", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png", + "paint_name": "★ Moto Gloves | 3rd Commando Company" + }, + { + "weapon_defindex": 5034, + "paint": "10030", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png", + "paint_name": "★ Specialist Gloves | Forest DDPAT" + }, + { + "weapon_defindex": 5034, + "paint": "10033", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png", + "paint_name": "★ Specialist Gloves | Crimson Kimono" + }, + { + "weapon_defindex": 5034, + "paint": "10034", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png", + "paint_name": "★ Specialist Gloves | Emerald Web" + }, + { + "weapon_defindex": 5034, + "paint": "10035", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png", + "paint_name": "★ Specialist Gloves | Foundation" + }, + { + "weapon_defindex": 5034, + "paint": "10061", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png", + "paint_name": "★ Specialist Gloves | Crimson Web" + }, + { + "weapon_defindex": 5034, + "paint": "10062", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png", + "paint_name": "★ Specialist Gloves | Buckshot" + }, + { + "weapon_defindex": 5034, + "paint": "10063", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png", + "paint_name": "★ Specialist Gloves | Fade" + }, + { + "weapon_defindex": 5034, + "paint": "10064", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png", + "paint_name": "★ Specialist Gloves | Mogul" + }, + { + "weapon_defindex": 5034, + "paint": "10065", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png", + "paint_name": "★ Specialist Gloves | Marble Fade" + }, + { + "weapon_defindex": 5034, + "paint": "10066", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png", + "paint_name": "★ Specialist Gloves | Lt. Commander" + }, + { + "weapon_defindex": 5034, + "paint": "10067", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png", + "paint_name": "★ Specialist Gloves | Tiger Strike" + }, + { + "weapon_defindex": 5034, + "paint": "10068", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png", + "paint_name": "★ Specialist Gloves | Field Agent" + }, + { + "weapon_defindex": 5035, + "paint": "10057", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png", + "paint_name": "★ Hydra Gloves | Emerald" + }, + { + "weapon_defindex": 5035, + "paint": "10058", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png", + "paint_name": "★ Hydra Gloves | Mangrove" + }, + { + "weapon_defindex": 5035, + "paint": "10059", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png", + "paint_name": "★ Hydra Gloves | Rattler" + }, + { + "weapon_defindex": 5035, + "paint": "10060", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png", + "paint_name": "★ Hydra Gloves | Case Hardened" + } +] diff --git a/resources/json/music.json b/resources/json/music.json new file mode 100644 index 0000000..f32f6ba --- /dev/null +++ b/resources/json/music.json @@ -0,0 +1,367 @@ +[ + { + "id": "3", + "name": "Music Kit | Daniel Sadowski, Crimson Assault", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-3.png" + }, + { + "id": "4", + "name": "Music Kit | Noisia, Sharpened", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-4.png" + }, + { + "id": "5", + "name": "Music Kit | Robert Allaire, Insurgency", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-5.png" + }, + { + "id": "6", + "name": "Music Kit | Sean Murray, A*D*8", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-6.png" + }, + { + "id": "7", + "name": "Music Kit | Feed Me, High Noon", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-7.png" + }, + { + "id": "8", + "name": "Music Kit | Dren, Death's Head Demolition", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-8.png" + }, + { + "id": "9", + "name": "Music Kit | Austin Wintory, Desert Fire", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-9.png" + }, + { + "id": "10", + "name": "Music Kit | Sasha, LNOE", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-10.png" + }, + { + "id": "11", + "name": "Music Kit | Skog, Metal", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-11.png" + }, + { + "id": "12", + "name": "Music Kit | Midnight Riders, All I Want for Christmas", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-12.png" + }, + { + "id": "13", + "name": "Music Kit | Matt Lange, IsoRhythm", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-13.png" + }, + { + "id": "14", + "name": "Music Kit | Mateo Messina, For No Mankind", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-14.png" + }, + { + "id": "15", + "name": "Music Kit | Various Artists, Hotline Miami", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-15.png" + }, + { + "id": "16", + "name": "Music Kit | Daniel Sadowski, Total Domination", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-16.png" + }, + { + "id": "17", + "name": "Music Kit | Damjan Mravunac, The Talos Principle", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-17.png" + }, + { + "id": "18", + "name": "Music Kit | Proxy, Battlepack", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-18.png" + }, + { + "id": "19", + "name": "Music Kit | Ki:Theory, MOLOTOV", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-19.png" + }, + { + "id": "20", + "name": "Music Kit | Troels Folmann, Uber Blasto Phone", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-20.png" + }, + { + "id": "21", + "name": "Music Kit | Kelly Bailey, Hazardous Environments", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-21.png" + }, + { + "id": "22", + "name": "Music Kit | Skog, II-Headshot", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-22.png" + }, + { + "id": "23", + "name": "Music Kit | Daniel Sadowski, The 8-Bit Kit", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-23.png" + }, + { + "id": "24", + "name": "Music Kit | AWOLNATION, I Am", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-24.png" + }, + { + "id": "25", + "name": "Music Kit | Mord Fustang, Diamonds", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-25.png" + }, + { + "id": "26", + "name": "Music Kit | Michael Bross, Invasion!", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-26.png" + }, + { + "id": "27", + "name": "Music Kit | Ian Hultquist, Lion's Mouth", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-27.png" + }, + { + "id": "28", + "name": "Music Kit | New Beat Fund, Sponge Fingerz", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-28.png" + }, + { + "id": "29", + "name": "Music Kit | Beartooth, Disgusting", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-29.png" + }, + { + "id": "30", + "name": "Music Kit | Lennie Moore, Java Havana Funkaloo", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-30.png" + }, + { + "id": "31", + "name": "Music Kit | Darude, Moments CS:GO", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-31.png" + }, + { + "id": "32", + "name": "Music Kit | Beartooth, Aggressive", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-32.png" + }, + { + "id": "33", + "name": "Music Kit | Blitz Kids, The Good Youth", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-33.png" + }, + { + "id": "34", + "name": "Music Kit | Hundredth, FREE", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-34.png" + }, + { + "id": "35", + "name": "Music Kit | Neck Deep, Life's Not Out To Get You", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-35.png" + }, + { + "id": "36", + "name": "Music Kit | Roam, Backbone", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-36.png" + }, + { + "id": "37", + "name": "Music Kit | Twin Atlantic, GLA", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-37.png" + }, + { + "id": "38", + "name": "Music Kit | Skog, III-Arena", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-38.png" + }, + { + "id": "39", + "name": "Music Kit | The Verkkars, EZ4ENCE", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-39.png" + }, + { + "id": "40", + "name": "Halo, The Master Chief Collection", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-40.png" + }, + { + "id": "41", + "name": "Music Kit | Scarlxrd: King, Scar", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-41.png" + }, + { + "id": "42", + "name": "Half-Life: Alyx, Anti-Citizen", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-42.png" + }, + { + "id": "43", + "name": "Music Kit | Austin Wintory, Bachram", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-43.png" + }, + { + "id": "44", + "name": "Music Kit | Dren, Gunman Taco Truck", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-44.png" + }, + { + "id": "45", + "name": "Music Kit | Daniel Sadowski, Eye of the Dragon", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-45.png" + }, + { + "id": "46", + "name": "Music Kit | Tree Adams and Ben Bromfield, M.U.D.D. FORCE", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-46.png" + }, + { + "id": "47", + "name": "Music Kit | Tim Huling, Neo Noir", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-47.png" + }, + { + "id": "48", + "name": "Music Kit | Sam Marshall, Bodacious", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-48.png" + }, + { + "id": "49", + "name": "Music Kit | Matt Levine, Drifter", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-49.png" + }, + { + "id": "50", + "name": "Music Kit | Amon Tobin, All for Dust", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-50.png" + }, + { + "id": "51", + "name": "Darren Korb, Hades Music Kit", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-51.png" + }, + { + "id": "52", + "name": "Music Kit | Neck Deep, The Lowlife Pack", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-52.png" + }, + { + "id": "53", + "name": "Music Kit | Scarlxrd, CHAIN$AW.LXADXUT.", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-53.png" + }, + { + "id": "54", + "name": "Music Kit | Austin Wintory, Mocha Petal", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-54.png" + }, + { + "id": "55", + "name": "Music Kit | Chipzel, ~Yellow Magic~", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-55.png" + }, + { + "id": "56", + "name": "Music Kit | Freaky DNA, Vici", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-56.png" + }, + { + "id": "57", + "name": "Music Kit | Jesse Harlin, Astro Bellum", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-57.png" + }, + { + "id": "58", + "name": "Music Kit | Laura Shigihara: Work Hard, Play Hard", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-58.png" + }, + { + "id": "59", + "name": "Music Kit | Sarah Schachner, KOLIBRI", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-59.png" + }, + { + "id": "60", + "name": "Music Kit | bbno$, u mad!", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-60.png" + }, + { + "id": "61", + "name": "Music Kit | The Verkkars & n0thing, Flashbang Dance", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-61.png" + }, + { + "id": "62", + "name": "Music Kit | 3kliksphilip, Heading for the Source", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-62.png" + }, + { + "id": "63", + "name": "Music Kit | Humanity's Last Breath, Void", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-63.png" + }, + { + "id": "64", + "name": "Music Kit | Juelz, Shooters", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-64.png" + }, + { + "id": "65", + "name": "Music Kit | Knock2, dashstar*", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-65.png" + }, + { + "id": "66", + "name": "Music Kit | Meechy Darko, Gothic Luxury", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-66.png" + }, + { + "id": "67", + "name": "Music Kit | Sullivan King, Lock Me Up", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-67.png" + }, + { + "id": "68", + "name": "Music Kit | Perfect World, 花脸 Hua Lian (Painted Face)", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-68.png" + }, + { + "id": "69", + "name": "Music Kit | Denzel Curry, ULTIMATE", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-69.png" + }, + { + "id": "71", + "name": "Music Kit | DRYDEN, Feel The Power", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png" + }, + { + "id": "72", + "name": "Music Kit | ISOxo, inhuman", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png" + }, + { + "id": "73", + "name": "Music Kit | KILL SCRIPT, All Night", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png" + }, + { + "id": "74", + "name": "Music Kit | Knock2, Make U SWEAT!", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png" + }, + { + "id": "75", + "name": "Music Kit | Rad Cat, Reason", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png" + }, + { + "id": "76", + "name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights", + "image": "https://raw.githubusercontent.com/daffyyyy/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png" + } +] diff --git a/resources/json/skins.json b/resources/json/skins.json new file mode 100644 index 0000000..538459f --- /dev/null +++ b/resources/json/skins.json @@ -0,0 +1,12077 @@ +[ + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle.png", + "paint_name": "Desert Eagle | Default" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "17", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-17.png", + "paint_name": "Desert Eagle | Urban DDPAT" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "37", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-37.png", + "paint_name": "Desert Eagle | Blaze" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-40.png", + "paint_name": "Desert Eagle | Night" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "61", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-61.png", + "paint_name": "Desert Eagle | Hypnotic" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "90", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-90.png", + "paint_name": "Desert Eagle | Mudder" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "185", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-185.png", + "paint_name": "Desert Eagle | Golden Koi" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "231", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-231.png", + "paint_name": "Desert Eagle | Cobalt Disruption" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "232", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-232.png", + "paint_name": "Desert Eagle | Crimson Web" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "237", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-237.png", + "paint_name": "Desert Eagle | Urban Rubble" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "273", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-273.png", + "paint_name": "Desert Eagle | Heirloom" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "296", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-296.png", + "paint_name": "Desert Eagle | Meteorite" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "328", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-328.png", + "paint_name": "Desert Eagle | Hand Cannon" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "347", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-347.png", + "paint_name": "Desert Eagle | Pilot" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "351", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-351.png", + "paint_name": "Desert Eagle | Conspiracy" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "397", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-397.png", + "paint_name": "Desert Eagle | Naga" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "425", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-425.png", + "paint_name": "Desert Eagle | Bronze Deco" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "468", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-468.png", + "paint_name": "Desert Eagle | Midnight Storm" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "469", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-469.png", + "paint_name": "Desert Eagle | Sunset Storm 壱" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "470", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-470.png", + "paint_name": "Desert Eagle | Sunset Storm 弐" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "509", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-509.png", + "paint_name": "Desert Eagle | Corinthian" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "527", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-527.png", + "paint_name": "Desert Eagle | Kumicho Dragon" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "603", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-603.png", + "paint_name": "Desert Eagle | Directive" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "645", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-645.png", + "paint_name": "Desert Eagle | Oxide Blaze" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "711", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-711.png", + "paint_name": "Desert Eagle | Code Red" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "757", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-757.png", + "paint_name": "Desert Eagle | Emerald Jörmungandr" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "764", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-764.png", + "paint_name": "Desert Eagle | Fennec Fox" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "805", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-805.png", + "paint_name": "Desert Eagle | Mecha Industries" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "841", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-841.png", + "paint_name": "Desert Eagle | Light Rail" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "945", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-945.png", + "paint_name": "Desert Eagle | Blue Ply" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "962", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-962.png", + "paint_name": "Desert Eagle | Printstream" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "992", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-992.png", + "paint_name": "Desert Eagle | The Bronze" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "1006", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1006.png", + "paint_name": "Desert Eagle | Night Heist" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "1050", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1050.png", + "paint_name": "Desert Eagle | Trigger Discipline" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "1056", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1056.png", + "paint_name": "Desert Eagle | Sputnik" + }, + { + "weapon_defindex": 1, + "weapon_name": "weapon_deagle", + "paint": "1090", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_deagle-1090.png", + "paint_name": "Desert Eagle | Ocean Drive" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite.png", + "paint_name": "Dual Berettas | Default" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "28", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-28.png", + "paint_name": "Dual Berettas | Anodized Navy" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-43.png", + "paint_name": "Dual Berettas | Stained" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "46", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-46.png", + "paint_name": "Dual Berettas | Contractor" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "47", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-47.png", + "paint_name": "Dual Berettas | Colony" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "153", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-153.png", + "paint_name": "Dual Berettas | Demolition" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "190", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-190.png", + "paint_name": "Dual Berettas | Black Limba" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "220", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-220.png", + "paint_name": "Dual Berettas | Hemoglobin" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "249", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-249.png", + "paint_name": "Dual Berettas | Cobalt Quartz" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "261", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-261.png", + "paint_name": "Dual Berettas | Marina" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "276", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-276.png", + "paint_name": "Dual Berettas | Panther" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "307", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-307.png", + "paint_name": "Dual Berettas | Retribution" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "330", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-330.png", + "paint_name": "Dual Berettas | Briar" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "396", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-396.png", + "paint_name": "Dual Berettas | Urban Shock" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "447", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-447.png", + "paint_name": "Dual Berettas | Duelist" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "450", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-450.png", + "paint_name": "Dual Berettas | Moon in Libra" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "453", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-453.png", + "paint_name": "Dual Berettas | Emerald" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "491", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-491.png", + "paint_name": "Dual Berettas | Dualing Dragons" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "528", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-528.png", + "paint_name": "Dual Berettas | Cartel" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "544", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-544.png", + "paint_name": "Dual Berettas | Ventilators" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "625", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-625.png", + "paint_name": "Dual Berettas | Royal Consorts" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "658", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-658.png", + "paint_name": "Dual Berettas | Cobra Strike" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "710", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-710.png", + "paint_name": "Dual Berettas | Shred" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "747", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-747.png", + "paint_name": "Dual Berettas | Twin Turbo" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "824", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-824.png", + "paint_name": "Dual Berettas | Drift Wood" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "860", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-860.png", + "paint_name": "Dual Berettas | Pyre" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "895", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-895.png", + "paint_name": "Dual Berettas | Balance" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "903", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-903.png", + "paint_name": "Dual Berettas | Elite 1.6" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "978", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-978.png", + "paint_name": "Dual Berettas | Dezastre" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "998", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-998.png", + "paint_name": "Dual Berettas | Switch Board" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1005", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1005.png", + "paint_name": "Dual Berettas | Heist" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1086", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1086.png", + "paint_name": "Dual Berettas | Oil Change" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1091", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1091.png", + "paint_name": "Dual Berettas | Tread" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1126", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1126.png", + "paint_name": "Dual Berettas | Melondrama" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1156", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1156.png", + "paint_name": "Dual Berettas | Flora Carnivora" + }, + { + "weapon_defindex": 2, + "weapon_name": "weapon_elite", + "paint": "1169", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_elite-1169.png", + "paint_name": "Dual Berettas | Hideout" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven.png", + "paint_name": "Five-SeveN | Default" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "3", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-3.png", + "paint_name": "Five-SeveN | Candy Apple" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-44.png", + "paint_name": "Five-SeveN | Case Hardened" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "46", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-46.png", + "paint_name": "Five-SeveN | Contractor" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "78", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-78.png", + "paint_name": "Five-SeveN | Forest Night" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "141", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-141.png", + "paint_name": "Five-SeveN | Orange Peel" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "151", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-151.png", + "paint_name": "Five-SeveN | Jungle" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "210", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-210.png", + "paint_name": "Five-SeveN | Anodized Gunmetal" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "223", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-223.png", + "paint_name": "Five-SeveN | Nightshade" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "252", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-252.png", + "paint_name": "Five-SeveN | Silver Quartz" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "254", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-254.png", + "paint_name": "Five-SeveN | Nitro" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "265", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-265.png", + "paint_name": "Five-SeveN | Kami" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "274", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-274.png", + "paint_name": "Five-SeveN | Copper Galaxy" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "352", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-352.png", + "paint_name": "Five-SeveN | Fowl Play" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "377", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-377.png", + "paint_name": "Five-SeveN | Hot Shot" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "387", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-387.png", + "paint_name": "Five-SeveN | Urban Hazard" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "427", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-427.png", + "paint_name": "Five-SeveN | Monkey Business" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "464", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-464.png", + "paint_name": "Five-SeveN | Neon Kimono" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "510", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-510.png", + "paint_name": "Five-SeveN | Retrobution" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "530", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-530.png", + "paint_name": "Five-SeveN | Triumvirate" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "585", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-585.png", + "paint_name": "Five-SeveN | Violent Daimyo" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "605", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-605.png", + "paint_name": "Five-SeveN | Scumbria" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "646", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-646.png", + "paint_name": "Five-SeveN | Capillary" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "660", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-660.png", + "paint_name": "Five-SeveN | Hyper Beast" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "693", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-693.png", + "paint_name": "Five-SeveN | Flame Test" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "729", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-729.png", + "paint_name": "Five-SeveN | Crimson Blossom" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "784", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-784.png", + "paint_name": "Five-SeveN | Coolant" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "837", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-837.png", + "paint_name": "Five-SeveN | Angry Mob" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "906", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-906.png", + "paint_name": "Five-SeveN | Buddy" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "932", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-932.png", + "paint_name": "Five-SeveN | Withered Vine" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "979", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-979.png", + "paint_name": "Five-SeveN | Fairy Tale" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1002", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1002.png", + "paint_name": "Five-SeveN | Berries And Cherries" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1082", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1082.png", + "paint_name": "Five-SeveN | Fall Hazard" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1093", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1093.png", + "paint_name": "Five-SeveN | Boost Protocol" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1128", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1128.png", + "paint_name": "Five-SeveN | Scrawl" + }, + { + "weapon_defindex": 3, + "weapon_name": "weapon_fiveseven", + "paint": "1168", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_fiveseven-1168.png", + "paint_name": "Five-SeveN | Hybrid" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock.png", + "paint_name": "Glock-18 | Default" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "2", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-2.png", + "paint_name": "Glock-18 | Groundwater" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "3", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-3.png", + "paint_name": "Glock-18 | Candy Apple" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-38.png", + "paint_name": "Glock-18 | Fade" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-40.png", + "paint_name": "Glock-18 | Night" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "48", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-48.png", + "paint_name": "Glock-18 | Dragon Tattoo" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "84", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-84.png", + "paint_name": "Glock-18 | Pink DDPAT" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "159", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-159.png", + "paint_name": "Glock-18 | Brass" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "208", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-208.png", + "paint_name": "Glock-18 | Sand Dune" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "230", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-230.png", + "paint_name": "Glock-18 | Steel Disruption" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "278", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-278.png", + "paint_name": "Glock-18 | Blue Fissure" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "293", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-293.png", + "paint_name": "Glock-18 | Death Rattle" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "353", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-353.png", + "paint_name": "Glock-18 | Water Elemental" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "367", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-367.png", + "paint_name": "Glock-18 | Reactor" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "381", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-381.png", + "paint_name": "Glock-18 | Grinder" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "399", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-399.png", + "paint_name": "Glock-18 | Catacombs" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "437", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-437.png", + "paint_name": "Glock-18 | Twilight Galaxy" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "479", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-479.png", + "paint_name": "Glock-18 | Bunsen Burner" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "495", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-495.png", + "paint_name": "Glock-18 | Wraiths" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "532", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-532.png", + "paint_name": "Glock-18 | Royal Legion" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "586", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-586.png", + "paint_name": "Glock-18 | Wasteland Rebel" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "607", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-607.png", + "paint_name": "Glock-18 | Weasel" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "623", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-623.png", + "paint_name": "Glock-18 | Ironwork" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "680", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-680.png", + "paint_name": "Glock-18 | Off World" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "694", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-694.png", + "paint_name": "Glock-18 | Moonrise" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "713", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-713.png", + "paint_name": "Glock-18 | Warhawk" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "732", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-732.png", + "paint_name": "Glock-18 | Synth Leaf" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "789", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-789.png", + "paint_name": "Glock-18 | Nuclear Garden" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "799", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-799.png", + "paint_name": "Glock-18 | High Beam" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "808", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-808.png", + "paint_name": "Glock-18 | Oxide Blaze" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "918", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-918.png", + "paint_name": "Glock-18 | Sacrifice" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "957", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-957.png", + "paint_name": "Glock-18 | Bullet Queen" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "963", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-963.png", + "paint_name": "Glock-18 | Vogue" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "988", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-988.png", + "paint_name": "Glock-18 | Neo-Noir" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1016", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1016.png", + "paint_name": "Glock-18 | Franklin" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1039", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1039.png", + "paint_name": "Glock-18 | Clear Polymer" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1079", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1079.png", + "paint_name": "Glock-18 | Red Tire" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1100.png", + "paint_name": "Glock-18 | Snack Attack" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1119", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1119.png", + "paint_name": "Glock-18 | Gamma Doppler" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1120", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1120.png", + "paint_name": "Glock-18 | Gamma Doppler" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1121", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1121.png", + "paint_name": "Glock-18 | Gamma Doppler" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1122", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1122.png", + "paint_name": "Glock-18 | Gamma Doppler" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1123", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1123.png", + "paint_name": "Glock-18 | Gamma Doppler" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1158", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1158.png", + "paint_name": "Glock-18 | Winterized" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1167", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1167.png", + "paint_name": "Glock-18 | Block-18" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1227", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1227.png", + "paint_name": "Glock-18 | Umbral Rabbit" + }, + { + "weapon_defindex": 4, + "weapon_name": "weapon_glock", + "paint": "1240", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_glock-1240.png", + "paint_name": "Glock-18 | Ramese's Reach" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47.png", + "paint_name": "AK-47 | Default" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "14", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-14.png", + "paint_name": "AK-47 | Red Laminate" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-44.png", + "paint_name": "AK-47 | Case Hardened" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-72.png", + "paint_name": "AK-47 | Safari Mesh" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "122", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-122.png", + "paint_name": "AK-47 | Jungle Spray" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "170", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-170.png", + "paint_name": "AK-47 | Predator" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "172", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-172.png", + "paint_name": "AK-47 | Black Laminate" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "180", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-180.png", + "paint_name": "AK-47 | Fire Serpent" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "226", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-226.png", + "paint_name": "AK-47 | Blue Laminate" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "282", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-282.png", + "paint_name": "AK-47 | Redline" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "300", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-300.png", + "paint_name": "AK-47 | Emerald Pinstripe" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "302", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-302.png", + "paint_name": "AK-47 | Vulcan" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "316", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-316.png", + "paint_name": "AK-47 | Jaguar" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "340", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-340.png", + "paint_name": "AK-47 | Jet Set" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "341", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-341.png", + "paint_name": "AK-47 | First Class" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "380", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-380.png", + "paint_name": "AK-47 | Wasteland Rebel" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "394", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-394.png", + "paint_name": "AK-47 | Cartel" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "422", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-422.png", + "paint_name": "AK-47 | Elite Build" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "456", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-456.png", + "paint_name": "AK-47 | Hydroponic" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "474", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-474.png", + "paint_name": "AK-47 | Aquamarine Revenge" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "490", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-490.png", + "paint_name": "AK-47 | Frontside Misty" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "506", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-506.png", + "paint_name": "AK-47 | Point Disarray" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "524", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-524.png", + "paint_name": "AK-47 | Fuel Injector" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "600", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-600.png", + "paint_name": "AK-47 | Neon Revolution" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "639", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-639.png", + "paint_name": "AK-47 | Bloodsport" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "656", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-656.png", + "paint_name": "AK-47 | Orbit Mk01" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "675", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-675.png", + "paint_name": "AK-47 | The Empress" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "707", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-707.png", + "paint_name": "AK-47 | Neon Rider" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "724", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-724.png", + "paint_name": "AK-47 | Wild Lotus" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "745", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-745.png", + "paint_name": "AK-47 | Baroque Purple" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "795", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-795.png", + "paint_name": "AK-47 | Safety Net" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "801", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-801.png", + "paint_name": "AK-47 | Asiimov" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "836", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-836.png", + "paint_name": "AK-47 | Uncharted" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "885", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-885.png", + "paint_name": "AK-47 | Rat Rod" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "921", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-921.png", + "paint_name": "AK-47 | Gold Arabesque" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "941", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-941.png", + "paint_name": "AK-47 | Phantom Disruptor" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "959", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-959.png", + "paint_name": "AK-47 | Legion of Anubis" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1004", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1004.png", + "paint_name": "AK-47 | X-Ray" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1018", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1018.png", + "paint_name": "AK-47 | Panthera onca" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1035", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1035.png", + "paint_name": "AK-47 | Slate" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1070", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1070.png", + "paint_name": "AK-47 | Green Laminate" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1087", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1087.png", + "paint_name": "AK-47 | Leet Museo" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1141", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1141.png", + "paint_name": "AK-47 | Nightwish" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1143.png", + "paint_name": "AK-47 | Ice Coaled" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1171", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1171.png", + "paint_name": "AK-47 | Inheritance" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1221", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1221.png", + "paint_name": "AK-47 | Head Shot" + }, + { + "weapon_defindex": 7, + "weapon_name": "weapon_ak47", + "paint": "1238", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ak47-1238.png", + "paint_name": "AK-47 | Steel Delta" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug.png", + "paint_name": "AUG | Default" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "9", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-9.png", + "paint_name": "AUG | Bengal Tiger" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "10", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-10.png", + "paint_name": "AUG | Copperhead" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "33", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-33.png", + "paint_name": "AUG | Hot Rod" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "46", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-46.png", + "paint_name": "AUG | Contractor" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "47", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-47.png", + "paint_name": "AUG | Colony" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "73", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-73.png", + "paint_name": "AUG | Wings" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-100.png", + "paint_name": "AUG | Storm" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "110", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-110.png", + "paint_name": "AUG | Condemned" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "197", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-197.png", + "paint_name": "AUG | Anodized Navy" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-246.png", + "paint_name": "AUG | Amber Fade" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "280", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-280.png", + "paint_name": "AUG | Chameleon" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "305", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-305.png", + "paint_name": "AUG | Torque" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "375", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-375.png", + "paint_name": "AUG | Radiation Hazard" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "444", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-444.png", + "paint_name": "AUG | Daedalus" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "455", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-455.png", + "paint_name": "AUG | Akihabara Accept" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "507", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-507.png", + "paint_name": "AUG | Ricochet" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "541", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-541.png", + "paint_name": "AUG | Fleet Flock" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "583", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-583.png", + "paint_name": "AUG | Aristocrat" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "601", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-601.png", + "paint_name": "AUG | Syd Mead" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "674", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-674.png", + "paint_name": "AUG | Triqua" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "690", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-690.png", + "paint_name": "AUG | Stymphalian" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "708", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-708.png", + "paint_name": "AUG | Amber Slipstream" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "727", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-727.png", + "paint_name": "AUG | Midnight Lily" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "740", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-740.png", + "paint_name": "AUG | Navy Murano" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "758", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-758.png", + "paint_name": "AUG | Flame Jörmungandr" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "779", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-779.png", + "paint_name": "AUG | Random Access" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "794", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-794.png", + "paint_name": "AUG | Sweeper" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "823", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-823.png", + "paint_name": "AUG | Sand Storm" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "845", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-845.png", + "paint_name": "AUG | Momentum" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "886", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-886.png", + "paint_name": "AUG | Arctic Wolf" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "913", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-913.png", + "paint_name": "AUG | Death by Puppy" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "927", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-927.png", + "paint_name": "AUG | Spalted Wood" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "942", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-942.png", + "paint_name": "AUG | Tom Cat" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "995", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-995.png", + "paint_name": "AUG | Surveillance" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "1033", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-1033.png", + "paint_name": "AUG | Carved Jade" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "1088", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-1088.png", + "paint_name": "AUG | Plague" + }, + { + "weapon_defindex": 8, + "weapon_name": "weapon_aug", + "paint": "1249", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_aug-1249.png", + "paint_name": "AUG | Snake Pit" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp.png", + "paint_name": "AWP | Default" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "30", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-30.png", + "paint_name": "AWP | Snake Camo" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "51", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-51.png", + "paint_name": "AWP | Lightning Strike" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-72.png", + "paint_name": "AWP | Safari Mesh" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "84", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-84.png", + "paint_name": "AWP | Pink DDPAT" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "174", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-174.png", + "paint_name": "AWP | BOOM" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "181", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-181.png", + "paint_name": "AWP | Corticera" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "212", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-212.png", + "paint_name": "AWP | Graphite" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "227", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-227.png", + "paint_name": "AWP | Electric Hive" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "251", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-251.png", + "paint_name": "AWP | Pit Viper" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "259", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-259.png", + "paint_name": "AWP | Redline" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "279", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-279.png", + "paint_name": "AWP | Asiimov" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "344", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-344.png", + "paint_name": "AWP | Dragon Lore" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "395", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-395.png", + "paint_name": "AWP | Man-o'-war" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "424", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-424.png", + "paint_name": "AWP | Worm God" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "446", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-446.png", + "paint_name": "AWP | Medusa" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "451", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-451.png", + "paint_name": "AWP | Sun in Leo" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "475", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-475.png", + "paint_name": "AWP | Hyper Beast" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "525", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-525.png", + "paint_name": "AWP | Elite Build" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "584", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-584.png", + "paint_name": "AWP | Phobos" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "640", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-640.png", + "paint_name": "AWP | Fever Dream" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "662", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-662.png", + "paint_name": "AWP | Oni Taiji" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "691", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-691.png", + "paint_name": "AWP | Mortis" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "718", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-718.png", + "paint_name": "AWP | PAW" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "736", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-736.png", + "paint_name": "AWP | The Prince" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "756", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-756.png", + "paint_name": "AWP | Gungnir" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "788", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-788.png", + "paint_name": "AWP | Acheron" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "803", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-803.png", + "paint_name": "AWP | Neo-Noir" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "819", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-819.png", + "paint_name": "AWP | Desert Hydra" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "838", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-838.png", + "paint_name": "AWP | Atheris" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "887", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-887.png", + "paint_name": "AWP | Containment Breach" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "917", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-917.png", + "paint_name": "AWP | Wildfire" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "943", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-943.png", + "paint_name": "AWP | Capillary" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "975", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-975.png", + "paint_name": "AWP | Exoskeleton" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1026", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1026.png", + "paint_name": "AWP | Fade" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1029", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1029.png", + "paint_name": "AWP | Silk Tiger" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1058", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1058.png", + "paint_name": "AWP | POP AWP" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1144", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1144.png", + "paint_name": "AWP | Chromatic Aberration" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1170", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1170.png", + "paint_name": "AWP | Chrome Cannon" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1222", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1222.png", + "paint_name": "AWP | Duality" + }, + { + "weapon_defindex": 9, + "weapon_name": "weapon_awp", + "paint": "1239", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_awp-1239.png", + "paint_name": "AWP | Black Nile" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas.png", + "paint_name": "FAMAS | Default" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "22", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-22.png", + "paint_name": "FAMAS | Contrast Spray" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "47", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-47.png", + "paint_name": "FAMAS | Colony" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "60", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-60.png", + "paint_name": "FAMAS | Dark Water" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "92", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-92.png", + "paint_name": "FAMAS | Cyanospatter" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "154", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-154.png", + "paint_name": "FAMAS | Afterimage" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "178", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-178.png", + "paint_name": "FAMAS | Doomkitty" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "194", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-194.png", + "paint_name": "FAMAS | Spitfire" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "218", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-218.png", + "paint_name": "FAMAS | Hexane" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "240", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-240.png", + "paint_name": "FAMAS | CaliCamo" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "244", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-244.png", + "paint_name": "FAMAS | Teardown" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "260", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-260.png", + "paint_name": "FAMAS | Pulse" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "288", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-288.png", + "paint_name": "FAMAS | Sergeant" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "371", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-371.png", + "paint_name": "FAMAS | Styx" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "429", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-429.png", + "paint_name": "FAMAS | Djinn" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "477", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-477.png", + "paint_name": "FAMAS | Neural Net" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "492", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-492.png", + "paint_name": "FAMAS | Survivor Z" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "529", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-529.png", + "paint_name": "FAMAS | Valence" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "604", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-604.png", + "paint_name": "FAMAS | Roll Cage" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "626", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-626.png", + "paint_name": "FAMAS | Mecha Industries" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "659", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-659.png", + "paint_name": "FAMAS | Macabre" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "723", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-723.png", + "paint_name": "FAMAS | Eye of Athena" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "835", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-835.png", + "paint_name": "FAMAS | Crypsis" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "863", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-863.png", + "paint_name": "FAMAS | Night Borre" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "869", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-869.png", + "paint_name": "FAMAS | Sundown" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "904", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-904.png", + "paint_name": "FAMAS | Decommissioned" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "919", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-919.png", + "paint_name": "FAMAS | Commemoration" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "999", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-999.png", + "paint_name": "FAMAS | Prime Conspiracy" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1053", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1053.png", + "paint_name": "FAMAS | Meltdown" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1066", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1066.png", + "paint_name": "FAMAS | Faulty Wiring" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1092", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1092.png", + "paint_name": "FAMAS | ZX Spectron" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1127", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1127.png", + "paint_name": "FAMAS | Rapid Eye Movement" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1146", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1146.png", + "paint_name": "FAMAS | Meow 36" + }, + { + "weapon_defindex": 10, + "weapon_name": "weapon_famas", + "paint": "1241", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_famas-1241.png", + "paint_name": "FAMAS | Waters of Nephthys" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1.png", + "paint_name": "G3SG1 | Default" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "6", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-6.png", + "paint_name": "G3SG1 | Arctic Camo" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "8", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-8.png", + "paint_name": "G3SG1 | Desert Storm" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "46", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-46.png", + "paint_name": "G3SG1 | Contractor" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-72.png", + "paint_name": "G3SG1 | Safari Mesh" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "74", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-74.png", + "paint_name": "G3SG1 | Polar Camo" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "147", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-147.png", + "paint_name": "G3SG1 | Jungle Dashed" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "195", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-195.png", + "paint_name": "G3SG1 | Demeter" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "229", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-229.png", + "paint_name": "G3SG1 | Azure Zebra" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "235", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-235.png", + "paint_name": "G3SG1 | VariCamo" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "294", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-294.png", + "paint_name": "G3SG1 | Green Apple" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "382", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-382.png", + "paint_name": "G3SG1 | Murky" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "438", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-438.png", + "paint_name": "G3SG1 | Chronos" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "465", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-465.png", + "paint_name": "G3SG1 | Orange Kimono" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "493", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-493.png", + "paint_name": "G3SG1 | Flux" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "511", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-511.png", + "paint_name": "G3SG1 | The Executioner" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "545", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-545.png", + "paint_name": "G3SG1 | Orange Crash" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "606", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-606.png", + "paint_name": "G3SG1 | Ventilator" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "628", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-628.png", + "paint_name": "G3SG1 | Stinger" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "677", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-677.png", + "paint_name": "G3SG1 | Hunter" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "712", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-712.png", + "paint_name": "G3SG1 | High Seas" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "739", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-739.png", + "paint_name": "G3SG1 | Violet Murano" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "806", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-806.png", + "paint_name": "G3SG1 | Scavenger" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "891", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-891.png", + "paint_name": "G3SG1 | Black Sand" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "930", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-930.png", + "paint_name": "G3SG1 | New Roots" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "980", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-980.png", + "paint_name": "G3SG1 | Digital Mesh" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "1034", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-1034.png", + "paint_name": "G3SG1 | Ancient Ritual" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "1095", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-1095.png", + "paint_name": "G3SG1 | Keeping Tabs" + }, + { + "weapon_defindex": 11, + "weapon_name": "weapon_g3sg1", + "paint": "1129", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_g3sg1-1129.png", + "paint_name": "G3SG1 | Dream Glade" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar.png", + "paint_name": "Galil AR | Default" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "76", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-76.png", + "paint_name": "Galil AR | Winter Forest" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "83", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-83.png", + "paint_name": "Galil AR | Orange DDPAT" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "101", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-101.png", + "paint_name": "Galil AR | Tornado" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "119", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-119.png", + "paint_name": "Galil AR | Sage Spray" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "192", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-192.png", + "paint_name": "Galil AR | Shattered" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "216", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-216.png", + "paint_name": "Galil AR | Blue Titanium" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "235", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-235.png", + "paint_name": "Galil AR | VariCamo" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "237", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-237.png", + "paint_name": "Galil AR | Urban Rubble" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "241", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-241.png", + "paint_name": "Galil AR | Hunting Blind" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-246.png", + "paint_name": "Galil AR | Amber Fade" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "264", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-264.png", + "paint_name": "Galil AR | Sandstorm" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "297", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-297.png", + "paint_name": "Galil AR | Tuxedo" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "308", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-308.png", + "paint_name": "Galil AR | Kami" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "379", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-379.png", + "paint_name": "Galil AR | Cerberus" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "398", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-398.png", + "paint_name": "Galil AR | Chatterbox" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "428", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-428.png", + "paint_name": "Galil AR | Eco" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "460", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-460.png", + "paint_name": "Galil AR | Aqua Terrace" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "478", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-478.png", + "paint_name": "Galil AR | Rocket Pop" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "494", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-494.png", + "paint_name": "Galil AR | Stone Cold" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "546", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-546.png", + "paint_name": "Galil AR | Firefight" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "629", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-629.png", + "paint_name": "Galil AR | Black Sand" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "647", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-647.png", + "paint_name": "Galil AR | Crimson Tsunami" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "661", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-661.png", + "paint_name": "Galil AR | Sugar Rush" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "790", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-790.png", + "paint_name": "Galil AR | Cold Fusion" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "807", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-807.png", + "paint_name": "Galil AR | Signal" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "842", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-842.png", + "paint_name": "Galil AR | Akoben" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "972", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-972.png", + "paint_name": "Galil AR | Connexion" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "981", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-981.png", + "paint_name": "Galil AR | Vandal" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1013", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1013.png", + "paint_name": "Galil AR | Phoenix Blacklight" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1032", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1032.png", + "paint_name": "Galil AR | Dusk Ruins" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1038", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1038.png", + "paint_name": "Galil AR | Chromatic Aberration" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1071", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1071.png", + "paint_name": "Galil AR | CAUTION!" + }, + { + "weapon_defindex": 13, + "weapon_name": "weapon_galilar", + "paint": "1147", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_galilar-1147.png", + "paint_name": "Galil AR | Destroyer" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249.png", + "paint_name": "M249 | Default" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "22", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-22.png", + "paint_name": "M249 | Contrast Spray" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "75", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-75.png", + "paint_name": "M249 | Blizzard Marbleized" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "151", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-151.png", + "paint_name": "M249 | Jungle" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "170", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-170.png", + "paint_name": "M249 | Predator" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "202", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-202.png", + "paint_name": "M249 | Jungle DDPAT" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "243", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-243.png", + "paint_name": "M249 | Gator Mesh" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "266", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-266.png", + "paint_name": "M249 | Magma" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "401", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-401.png", + "paint_name": "M249 | System Lock" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "452", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-452.png", + "paint_name": "M249 | Shipping Forecast" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "472", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-472.png", + "paint_name": "M249 | Impact Drill" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "496", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-496.png", + "paint_name": "M249 | Nebula Crusader" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "547", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-547.png", + "paint_name": "M249 | Spectre" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "648", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-648.png", + "paint_name": "M249 | Emerald Poison Dart" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "827", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-827.png", + "paint_name": "M249 | Humidor" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "900", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-900.png", + "paint_name": "M249 | Warbird" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "902", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-902.png", + "paint_name": "M249 | Aztec" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "933", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-933.png", + "paint_name": "M249 | Midnight Palm" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "983", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-983.png", + "paint_name": "M249 | Deep Relief" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "1042", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-1042.png", + "paint_name": "M249 | O.S.I.P.R." + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "1148", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-1148.png", + "paint_name": "M249 | Downtown" + }, + { + "weapon_defindex": 14, + "weapon_name": "weapon_m249", + "paint": "1242", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m249-1242.png", + "paint_name": "M249 | Submerged" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1.png", + "paint_name": "M4A4 | Default" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "8", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-8.png", + "paint_name": "M4A4 | Desert Storm" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "16", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-16.png", + "paint_name": "M4A4 | Jungle Tiger" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "17", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-17.png", + "paint_name": "M4A4 | Urban DDPAT" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "101", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-101.png", + "paint_name": "M4A4 | Tornado" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "155", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-155.png", + "paint_name": "M4A4 | Bullet Rain" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "164", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-164.png", + "paint_name": "M4A4 | Modern Hunter" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "167", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-167.png", + "paint_name": "M4A4 | Radiation Hazard" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "176", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-176.png", + "paint_name": "M4A4 | Faded Zebra" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "187", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-187.png", + "paint_name": "M4A4 | Zirka" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "215", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-215.png", + "paint_name": "M4A4 | X-Ray" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "255", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-255.png", + "paint_name": "M4A4 | Asiimov" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "309", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-309.png", + "paint_name": "M4A4 | Howl" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "336", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-336.png", + "paint_name": "M4A4 | Desert-Strike" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "384", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-384.png", + "paint_name": "M4A4 | Griffin" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "400", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-400.png", + "paint_name": "M4A4 | 龍王 (Dragon King)" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "449", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-449.png", + "paint_name": "M4A4 | Poseidon" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "471", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-471.png", + "paint_name": "M4A4 | Daybreak" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "480", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-480.png", + "paint_name": "M4A4 | Evil Daimyo" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "512", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-512.png", + "paint_name": "M4A4 | Royal Paladin" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "533", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-533.png", + "paint_name": "M4A4 | The Battlestar" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "588", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-588.png", + "paint_name": "M4A4 | Desolate Space" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "632", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-632.png", + "paint_name": "M4A4 | Buzz Kill" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "664", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-664.png", + "paint_name": "M4A4 | Hellfire" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "695", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-695.png", + "paint_name": "M4A4 | Neo-Noir" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "730", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-730.png", + "paint_name": "M4A4 | Dark Blossom" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "780", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-780.png", + "paint_name": "M4A4 | Mainframe" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "793", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-793.png", + "paint_name": "M4A4 | Converter" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "811", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-811.png", + "paint_name": "M4A4 | Magnesium" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "844", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-844.png", + "paint_name": "M4A4 | The Emperor" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "926", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-926.png", + "paint_name": "M4A4 | Red DDPAT" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "971", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-971.png", + "paint_name": "M4A4 | Tooth Fairy" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "985", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-985.png", + "paint_name": "M4A4 | Cyber Security" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "993", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-993.png", + "paint_name": "M4A4 | Global Offensive" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1041", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1041.png", + "paint_name": "M4A4 | In Living Color" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1063", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1063.png", + "paint_name": "M4A4 | The Coalition" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1097", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1097.png", + "paint_name": "M4A4 | Spider Lily" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1149", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1149.png", + "paint_name": "M4A4 | Poly Mag" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1165", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1165.png", + "paint_name": "M4A4 | Etch Lord" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1228", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1228.png", + "paint_name": "M4A4 | Temukau" + }, + { + "weapon_defindex": 16, + "weapon_name": "weapon_m4a1", + "paint": "1255", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1-1255.png", + "paint_name": "M4A4 | Eye of Horus" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10.png", + "paint_name": "MAC-10 | Default" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "3", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-3.png", + "paint_name": "MAC-10 | Candy Apple" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "17", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-17.png", + "paint_name": "MAC-10 | Urban DDPAT" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "32", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-32.png", + "paint_name": "MAC-10 | Silver" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-38.png", + "paint_name": "MAC-10 | Fade" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-44.png", + "paint_name": "MAC-10 | Case Hardened" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-98.png", + "paint_name": "MAC-10 | Ultraviolet" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "101", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-101.png", + "paint_name": "MAC-10 | Tornado" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "157", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-157.png", + "paint_name": "MAC-10 | Palm" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "188", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-188.png", + "paint_name": "MAC-10 | Graven" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-246.png", + "paint_name": "MAC-10 | Amber Fade" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "284", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-284.png", + "paint_name": "MAC-10 | Heat" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "310", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-310.png", + "paint_name": "MAC-10 | Curse" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "333", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-333.png", + "paint_name": "MAC-10 | Indigo" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "337", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-337.png", + "paint_name": "MAC-10 | Tatter" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "343", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-343.png", + "paint_name": "MAC-10 | Commuter" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "372", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-372.png", + "paint_name": "MAC-10 | Nuclear Garden" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "402", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-402.png", + "paint_name": "MAC-10 | Malachite" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "433", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-433.png", + "paint_name": "MAC-10 | Neon Rider" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "498", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-498.png", + "paint_name": "MAC-10 | Rangeen" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "534", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-534.png", + "paint_name": "MAC-10 | Lapis Gator" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "589", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-589.png", + "paint_name": "MAC-10 | Carnivore" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "651", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-651.png", + "paint_name": "MAC-10 | Last Dive" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "665", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-665.png", + "paint_name": "MAC-10 | Aloha" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "682", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-682.png", + "paint_name": "MAC-10 | Oceanic" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "742", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-742.png", + "paint_name": "MAC-10 | Red Filigree" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "748", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-748.png", + "paint_name": "MAC-10 | Calf Skin" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "761", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-761.png", + "paint_name": "MAC-10 | Copper Borre" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "812", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-812.png", + "paint_name": "MAC-10 | Pipe Down" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "826", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-826.png", + "paint_name": "MAC-10 | Sienna Damask" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "840", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-840.png", + "paint_name": "MAC-10 | Whitefish" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "871", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-871.png", + "paint_name": "MAC-10 | Surfwood" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "898", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-898.png", + "paint_name": "MAC-10 | Stalker" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "908", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-908.png", + "paint_name": "MAC-10 | Classic Crate" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "947", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-947.png", + "paint_name": "MAC-10 | Disco Tech" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "965", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-965.png", + "paint_name": "MAC-10 | Allure" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1009", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1009.png", + "paint_name": "MAC-10 | Hot Snakes" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1025", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1025.png", + "paint_name": "MAC-10 | Gold Brick" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1045", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1045.png", + "paint_name": "MAC-10 | Button Masher" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1067", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1067.png", + "paint_name": "MAC-10 | Propaganda" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1075", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1075.png", + "paint_name": "MAC-10 | Strats" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1098", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1098.png", + "paint_name": "MAC-10 | Toybox" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1131", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1131.png", + "paint_name": "MAC-10 | Ensnared" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1150", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1150.png", + "paint_name": "MAC-10 | Monkeyflage" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1164", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1164.png", + "paint_name": "MAC-10 | Light Box" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1229", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1229.png", + "paint_name": "MAC-10 | Sakkaku" + }, + { + "weapon_defindex": 17, + "weapon_name": "weapon_mac10", + "paint": "1244", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mac10-1244.png", + "paint_name": "MAC-10 | Echoing Sands" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90.png", + "paint_name": "P90 | Default" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "20", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-20.png", + "paint_name": "P90 | Virus" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "67", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-67.png", + "paint_name": "P90 | Cold Blooded" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-100.png", + "paint_name": "P90 | Storm" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "111", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-111.png", + "paint_name": "P90 | Glacier Mesh" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "124", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-124.png", + "paint_name": "P90 | Sand Spray" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "156", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-156.png", + "paint_name": "P90 | Death by Kitty" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "169", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-169.png", + "paint_name": "P90 | Fallout Warning" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-175.png", + "paint_name": "P90 | Scorched" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "182", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-182.png", + "paint_name": "P90 | Emerald Dragon" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "228", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-228.png", + "paint_name": "P90 | Blind Spot" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "234", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-234.png", + "paint_name": "P90 | Ash Wood" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "244", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-244.png", + "paint_name": "P90 | Teardown" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "283", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-283.png", + "paint_name": "P90 | Trigon" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "311", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-311.png", + "paint_name": "P90 | Desert Warfare" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "335", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-335.png", + "paint_name": "P90 | Module" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "342", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-342.png", + "paint_name": "P90 | Leather" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "359", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-359.png", + "paint_name": "P90 | Asiimov" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "486", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-486.png", + "paint_name": "P90 | Elite Build" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "516", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-516.png", + "paint_name": "P90 | Shapewood" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "593", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-593.png", + "paint_name": "P90 | Chopper" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "611", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-611.png", + "paint_name": "P90 | Grim" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "636", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-636.png", + "paint_name": "P90 | Shallow Grave" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "669", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-669.png", + "paint_name": "P90 | Death Grip" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "717", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-717.png", + "paint_name": "P90 | Traction" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "726", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-726.png", + "paint_name": "P90 | Sunset Lily" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "744", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-744.png", + "paint_name": "P90 | Baroque Red" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "759", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-759.png", + "paint_name": "P90 | Astral Jörmungandr" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "776", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-776.png", + "paint_name": "P90 | Facility Negative" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "828", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-828.png", + "paint_name": "P90 | Verdant Growth" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "849", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-849.png", + "paint_name": "P90 | Off World" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "911", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-911.png", + "paint_name": "P90 | Nostalgia" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "925", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-925.png", + "paint_name": "P90 | Desert DDPAT" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "969", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-969.png", + "paint_name": "P90 | Freight" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "977", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-977.png", + "paint_name": "P90 | Cocoa Rampage" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1000", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1000.png", + "paint_name": "P90 | Run and Hide" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1015", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1015.png", + "paint_name": "P90 | Tiger Pit" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1020", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1020.png", + "paint_name": "P90 | Ancient Earth" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1074", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1074.png", + "paint_name": "P90 | Schematic" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1154", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1154.png", + "paint_name": "P90 | Vent Rush" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1233", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1233.png", + "paint_name": "P90 | Neoqueen" + }, + { + "weapon_defindex": 19, + "weapon_name": "weapon_p90", + "paint": "1250", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p90-1250.png", + "paint_name": "P90 | ScaraB Rush" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd.png", + "paint_name": "MP5-SD | Default" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "753", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-753.png", + "paint_name": "MP5-SD | Dirt Drop" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "781", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-781.png", + "paint_name": "MP5-SD | Co-Processor" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "798", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-798.png", + "paint_name": "MP5-SD | Nitro" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "800", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-800.png", + "paint_name": "MP5-SD | Lab Rats" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "810", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-810.png", + "paint_name": "MP5-SD | Phosphor" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "846", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-846.png", + "paint_name": "MP5-SD | Gauss" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "872", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-872.png", + "paint_name": "MP5-SD | Bamboo Garden" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "888", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-888.png", + "paint_name": "MP5-SD | Acid Wash" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "915", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-915.png", + "paint_name": "MP5-SD | Agent" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "923", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-923.png", + "paint_name": "MP5-SD | Oxide Oasis" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "949", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-949.png", + "paint_name": "MP5-SD | Desert Strike" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "974", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-974.png", + "paint_name": "MP5-SD | Kitbash" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "986", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-986.png", + "paint_name": "MP5-SD | Condition Zero" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "1061", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-1061.png", + "paint_name": "MP5-SD | Autumn Twilly" + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "1137", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-1137.png", + "paint_name": "MP5-SD | Necro Jr." + }, + { + "weapon_defindex": 23, + "weapon_name": "weapon_mp5sd", + "paint": "1231", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp5sd-1231.png", + "paint_name": "MP5-SD | Liquidation" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45.png", + "paint_name": "UMP-45 | Default" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "15", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-15.png", + "paint_name": "UMP-45 | Gunsmoke" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "17", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-17.png", + "paint_name": "UMP-45 | Urban DDPAT" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "37", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-37.png", + "paint_name": "UMP-45 | Blaze" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "70", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-70.png", + "paint_name": "UMP-45 | Carbon Fiber" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "90", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-90.png", + "paint_name": "UMP-45 | Mudder" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "93", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-93.png", + "paint_name": "UMP-45 | Caramel" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "169", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-169.png", + "paint_name": "UMP-45 | Fallout Warning" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-175.png", + "paint_name": "UMP-45 | Scorched" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "193", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-193.png", + "paint_name": "UMP-45 | Bone Pile" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "250", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-250.png", + "paint_name": "UMP-45 | Full Stop" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "281", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-281.png", + "paint_name": "UMP-45 | Corporal" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "333", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-333.png", + "paint_name": "UMP-45 | Indigo" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "362", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-362.png", + "paint_name": "UMP-45 | Labyrinth" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "392", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-392.png", + "paint_name": "UMP-45 | Delusion" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "436", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-436.png", + "paint_name": "UMP-45 | Grand Prix" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "441", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-441.png", + "paint_name": "UMP-45 | Minotaur's Labyrinth" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "488", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-488.png", + "paint_name": "UMP-45 | Riot" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "556", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-556.png", + "paint_name": "UMP-45 | Primal Saber" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "615", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-615.png", + "paint_name": "UMP-45 | Briefing" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "652", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-652.png", + "paint_name": "UMP-45 | Scaffold" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "672", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-672.png", + "paint_name": "UMP-45 | Metal Flowers" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "688", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-688.png", + "paint_name": "UMP-45 | Exposure" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "704", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-704.png", + "paint_name": "UMP-45 | Arctic Wolf" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "725", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-725.png", + "paint_name": "UMP-45 | Day Lily" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "778", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-778.png", + "paint_name": "UMP-45 | Facility Dark" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "802", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-802.png", + "paint_name": "UMP-45 | Momentum" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "851", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-851.png", + "paint_name": "UMP-45 | Moonrise" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "879", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-879.png", + "paint_name": "UMP-45 | Fade" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "916", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-916.png", + "paint_name": "UMP-45 | Plastique" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "990", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-990.png", + "paint_name": "UMP-45 | Gold Bismuth" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1003", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1003.png", + "paint_name": "UMP-45 | Crime Scene" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1008", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1008.png", + "paint_name": "UMP-45 | Houndstooth" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1049", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1049.png", + "paint_name": "UMP-45 | Oscillator" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1085", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1085.png", + "paint_name": "UMP-45 | Mechanism" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1157", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1157.png", + "paint_name": "UMP-45 | Roadblock" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1175.png", + "paint_name": "UMP-45 | Motorized" + }, + { + "weapon_defindex": 24, + "weapon_name": "weapon_ump45", + "paint": "1236", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ump45-1236.png", + "paint_name": "UMP-45 | Wild Child" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014.png", + "paint_name": "XM1014 | Default" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-42.png", + "paint_name": "XM1014 | Blue Steel" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "95", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-95.png", + "paint_name": "XM1014 | Grassland" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "96", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-96.png", + "paint_name": "XM1014 | Blue Spruce" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "135", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-135.png", + "paint_name": "XM1014 | Urban Perforated" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "166", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-166.png", + "paint_name": "XM1014 | Blaze Orange" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "169", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-169.png", + "paint_name": "XM1014 | Fallout Warning" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "205", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-205.png", + "paint_name": "XM1014 | Jungle" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "238", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-238.png", + "paint_name": "XM1014 | VariCamo Blue" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "240", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-240.png", + "paint_name": "XM1014 | CaliCamo" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "314", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-314.png", + "paint_name": "XM1014 | Heaven Guard" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "320", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-320.png", + "paint_name": "XM1014 | Red Python" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "348", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-348.png", + "paint_name": "XM1014 | Red Leather" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "370", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-370.png", + "paint_name": "XM1014 | Bone Machine" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "393", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-393.png", + "paint_name": "XM1014 | Tranquility" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "407", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-407.png", + "paint_name": "XM1014 | Quicksilver" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "505", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-505.png", + "paint_name": "XM1014 | Scumbria" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "521", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-521.png", + "paint_name": "XM1014 | Teclu Burner" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "557", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-557.png", + "paint_name": "XM1014 | Black Tie" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "616", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-616.png", + "paint_name": "XM1014 | Slipstream" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "654", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-654.png", + "paint_name": "XM1014 | Seasons" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "689", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-689.png", + "paint_name": "XM1014 | Ziggy" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "706", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-706.png", + "paint_name": "XM1014 | Oxide Blaze" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "731", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-731.png", + "paint_name": "XM1014 | Banana Leaf" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "760", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-760.png", + "paint_name": "XM1014 | Frost Borre" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "821", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-821.png", + "paint_name": "XM1014 | Elegant Vines" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "850", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-850.png", + "paint_name": "XM1014 | Incinegator" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "970", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-970.png", + "paint_name": "XM1014 | Entombed" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "994", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-994.png", + "paint_name": "XM1014 | Charter" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1021", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1021.png", + "paint_name": "XM1014 | Ancient Lore" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1046", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1046.png", + "paint_name": "XM1014 | XOXO" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1078", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1078.png", + "paint_name": "XM1014 | Blue Tire" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1103", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1103.png", + "paint_name": "XM1014 | Watchdog" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1135", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1135.png", + "paint_name": "XM1014 | Zombie Offensive" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1174", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1174.png", + "paint_name": "XM1014 | Irezumi" + }, + { + "weapon_defindex": 25, + "weapon_name": "weapon_xm1014", + "paint": "1254", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_xm1014-1254.png", + "paint_name": "XM1014 | Hieroglyph" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon.png", + "paint_name": "PP-Bizon | Default" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "3", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-3.png", + "paint_name": "PP-Bizon | Candy Apple" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "13", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-13.png", + "paint_name": "PP-Bizon | Blue Streak" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "25", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-25.png", + "paint_name": "PP-Bizon | Forest Leaves" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "70", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-70.png", + "paint_name": "PP-Bizon | Carbon Fiber" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "148", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-148.png", + "paint_name": "PP-Bizon | Sand Dashed" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "149", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-149.png", + "paint_name": "PP-Bizon | Urban Dashed" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "159", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-159.png", + "paint_name": "PP-Bizon | Brass" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "164", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-164.png", + "paint_name": "PP-Bizon | Modern Hunter" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "171", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-171.png", + "paint_name": "PP-Bizon | Irradiated Alert" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "203", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-203.png", + "paint_name": "PP-Bizon | Rust Coat" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "224", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-224.png", + "paint_name": "PP-Bizon | Water Sigil" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "236", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-236.png", + "paint_name": "PP-Bizon | Night Ops" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "267", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-267.png", + "paint_name": "PP-Bizon | Cobalt Halftone" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "293", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-293.png", + "paint_name": "PP-Bizon | Death Rattle" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "306", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-306.png", + "paint_name": "PP-Bizon | Antique" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "349", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-349.png", + "paint_name": "PP-Bizon | Osiris" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "376", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-376.png", + "paint_name": "PP-Bizon | Chemical Green" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "457", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-457.png", + "paint_name": "PP-Bizon | Bamboo Print" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "508", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-508.png", + "paint_name": "PP-Bizon | Fuel Rod" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "526", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-526.png", + "paint_name": "PP-Bizon | Photic Zone" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "542", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-542.png", + "paint_name": "PP-Bizon | Judgement of Anubis" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "594", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-594.png", + "paint_name": "PP-Bizon | Harvester" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "641", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-641.png", + "paint_name": "PP-Bizon | Jungle Slipstream" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "676", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-676.png", + "paint_name": "PP-Bizon | High Roller" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "692", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-692.png", + "paint_name": "PP-Bizon | Night Riot" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "775", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-775.png", + "paint_name": "PP-Bizon | Facility Sketch" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "829", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-829.png", + "paint_name": "PP-Bizon | Anolis" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "873", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-873.png", + "paint_name": "PP-Bizon | Seabird" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "884", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-884.png", + "paint_name": "PP-Bizon | Embargo" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "973", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-973.png", + "paint_name": "PP-Bizon | Runic" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "1083", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-1083.png", + "paint_name": "PP-Bizon | Breaker Box" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "1099", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-1099.png", + "paint_name": "PP-Bizon | Lumen" + }, + { + "weapon_defindex": 26, + "weapon_name": "weapon_bizon", + "paint": "1125", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bizon-1125.png", + "paint_name": "PP-Bizon | Space Cat" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7.png", + "paint_name": "MAG-7 | Default" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "32", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-32.png", + "paint_name": "MAG-7 | Silver" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "34", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-34.png", + "paint_name": "MAG-7 | Metallic DDPAT" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "39", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-39.png", + "paint_name": "MAG-7 | Bulldozer" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "70", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-70.png", + "paint_name": "MAG-7 | Carbon Fiber" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "99", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-99.png", + "paint_name": "MAG-7 | Sand Dune" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-100.png", + "paint_name": "MAG-7 | Storm" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "171", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-171.png", + "paint_name": "MAG-7 | Irradiated Alert" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "177", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-177.png", + "paint_name": "MAG-7 | Memento" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "198", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-198.png", + "paint_name": "MAG-7 | Hazard" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "291", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-291.png", + "paint_name": "MAG-7 | Heaven Guard" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "327", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-327.png", + "paint_name": "MAG-7 | Chainmail" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "385", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-385.png", + "paint_name": "MAG-7 | Firestarter" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "431", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-431.png", + "paint_name": "MAG-7 | Heat" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "462", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-462.png", + "paint_name": "MAG-7 | Counter Terrace" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "473", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-473.png", + "paint_name": "MAG-7 | Seabird" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "499", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-499.png", + "paint_name": "MAG-7 | Cobalt Core" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "535", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-535.png", + "paint_name": "MAG-7 | Praetorian" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "608", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-608.png", + "paint_name": "MAG-7 | Petroglyph" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "633", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-633.png", + "paint_name": "MAG-7 | Sonar" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "666", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-666.png", + "paint_name": "MAG-7 | Hard Water" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "703", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-703.png", + "paint_name": "MAG-7 | SWAG-7" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "737", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-737.png", + "paint_name": "MAG-7 | Cinquedea" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "754", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-754.png", + "paint_name": "MAG-7 | Rust Coat" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "787", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-787.png", + "paint_name": "MAG-7 | Core Breach" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "822", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-822.png", + "paint_name": "MAG-7 | Navy Sheen" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "909", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-909.png", + "paint_name": "MAG-7 | Popdog" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "948", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-948.png", + "paint_name": "MAG-7 | Justice" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "961", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-961.png", + "paint_name": "MAG-7 | Monster Call" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "1072", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-1072.png", + "paint_name": "MAG-7 | Prism Terrace" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "1089", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-1089.png", + "paint_name": "MAG-7 | BI83 Spectrum" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "1132", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-1132.png", + "paint_name": "MAG-7 | Foresight" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "1220", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-1220.png", + "paint_name": "MAG-7 | Insomnia" + }, + { + "weapon_defindex": 27, + "weapon_name": "weapon_mag7", + "paint": "1245", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mag7-1245.png", + "paint_name": "MAG-7 | Copper Coated" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev.png", + "paint_name": "Negev | Default" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "28", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-28.png", + "paint_name": "Negev | Anodized Navy" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "201", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-201.png", + "paint_name": "Negev | Palm" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "240", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-240.png", + "paint_name": "Negev | CaliCamo" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "285", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-285.png", + "paint_name": "Negev | Terrain" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-298.png", + "paint_name": "Negev | Army Sheen" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "317", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-317.png", + "paint_name": "Negev | Bratatat" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "355", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-355.png", + "paint_name": "Negev | Desert-Strike" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "369", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-369.png", + "paint_name": "Negev | Nuclear Waste" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "432", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-432.png", + "paint_name": "Negev | Man-o'-war" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "483", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-483.png", + "paint_name": "Negev | Loudmouth" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "514", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-514.png", + "paint_name": "Negev | Power Loader" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "610", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-610.png", + "paint_name": "Negev | Dazzle" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "698", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-698.png", + "paint_name": "Negev | Lionfish" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "763", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-763.png", + "paint_name": "Negev | Mjölnir" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "783", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-783.png", + "paint_name": "Negev | Bulkhead" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "920", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-920.png", + "paint_name": "Negev | Boroque Sand" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "950", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-950.png", + "paint_name": "Negev | Prototype" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "958", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-958.png", + "paint_name": "Negev | Ultralight" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "1012", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-1012.png", + "paint_name": "Negev | Phoenix Stencil" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "1043", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-1043.png", + "paint_name": "Negev | dev_texture" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "1080", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-1080.png", + "paint_name": "Negev | Infrastructure" + }, + { + "weapon_defindex": 28, + "weapon_name": "weapon_negev", + "paint": "1152", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_negev-1152.png", + "paint_name": "Negev | Drop Me" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff.png", + "paint_name": "Sawed-Off | Default" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-5.png", + "paint_name": "Sawed-Off | Forest DDPAT" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "30", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-30.png", + "paint_name": "Sawed-Off | Snake Camo" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "41", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-41.png", + "paint_name": "Sawed-Off | Copper" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "83", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-83.png", + "paint_name": "Sawed-Off | Orange DDPAT" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "119", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-119.png", + "paint_name": "Sawed-Off | Sage Spray" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "171", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-171.png", + "paint_name": "Sawed-Off | Irradiated Alert" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "204", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-204.png", + "paint_name": "Sawed-Off | Mosaico" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-246.png", + "paint_name": "Sawed-Off | Amber Fade" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "250", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-250.png", + "paint_name": "Sawed-Off | Full Stop" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "256", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-256.png", + "paint_name": "Sawed-Off | The Kraken" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "323", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-323.png", + "paint_name": "Sawed-Off | Rust Coat" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "345", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-345.png", + "paint_name": "Sawed-Off | First Class" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "390", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-390.png", + "paint_name": "Sawed-Off | Highwayman" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "405", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-405.png", + "paint_name": "Sawed-Off | Serenity" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "434", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-434.png", + "paint_name": "Sawed-Off | Origami" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "458", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-458.png", + "paint_name": "Sawed-Off | Bamboo Shadow" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "517", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-517.png", + "paint_name": "Sawed-Off | Yorick" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "552", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-552.png", + "paint_name": "Sawed-Off | Fubar" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "596", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-596.png", + "paint_name": "Sawed-Off | Limelight" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "638", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-638.png", + "paint_name": "Sawed-Off | Wasteland Princess" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "655", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-655.png", + "paint_name": "Sawed-Off | Zander" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "673", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-673.png", + "paint_name": "Sawed-Off | Morris" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "720", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-720.png", + "paint_name": "Sawed-Off | Devourer" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "797", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-797.png", + "paint_name": "Sawed-Off | Brake Light" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "814", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-814.png", + "paint_name": "Sawed-Off | Black Sand" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "870", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-870.png", + "paint_name": "Sawed-Off | Jungle Thicket" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "880", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-880.png", + "paint_name": "Sawed-Off | Parched" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "953", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-953.png", + "paint_name": "Sawed-Off | Apocalypto" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "1014", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-1014.png", + "paint_name": "Sawed-Off | Clay Ambush" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "1140", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-1140.png", + "paint_name": "Sawed-Off | Spirit Board" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "1155", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-1155.png", + "paint_name": "Sawed-Off | Kiss♥Love" + }, + { + "weapon_defindex": 29, + "weapon_name": "weapon_sawedoff", + "paint": "1160", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sawedoff-1160.png", + "paint_name": "Sawed-Off | Analog Input" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9.png", + "paint_name": "Tec-9 | Default" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "2", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-2.png", + "paint_name": "Tec-9 | Groundwater" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "17", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-17.png", + "paint_name": "Tec-9 | Urban DDPAT" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "36", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-36.png", + "paint_name": "Tec-9 | Ossified" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "159", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-159.png", + "paint_name": "Tec-9 | Brass" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "179", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-179.png", + "paint_name": "Tec-9 | Nuclear Threat" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "206", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-206.png", + "paint_name": "Tec-9 | Tornado" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "216", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-216.png", + "paint_name": "Tec-9 | Blue Titanium" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "235", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-235.png", + "paint_name": "Tec-9 | VariCamo" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "242", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-242.png", + "paint_name": "Tec-9 | Army Mesh" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "248", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-248.png", + "paint_name": "Tec-9 | Red Quartz" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "272", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-272.png", + "paint_name": "Tec-9 | Titanium Bit" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "289", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-289.png", + "paint_name": "Tec-9 | Sandstorm" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "303", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-303.png", + "paint_name": "Tec-9 | Isaac" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "374", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-374.png", + "paint_name": "Tec-9 | Toxic" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "439", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-439.png", + "paint_name": "Tec-9 | Hades" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "459", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-459.png", + "paint_name": "Tec-9 | Bamboo Forest" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "463", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-463.png", + "paint_name": "Tec-9 | Terrace" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "520", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-520.png", + "paint_name": "Tec-9 | Avalanche" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "539", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-539.png", + "paint_name": "Tec-9 | Jambiya" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "555", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-555.png", + "paint_name": "Tec-9 | Re-Entry" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "599", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-599.png", + "paint_name": "Tec-9 | Ice Cap" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "614", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-614.png", + "paint_name": "Tec-9 | Fuel Injector" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "671", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-671.png", + "paint_name": "Tec-9 | Cut Out" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "684", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-684.png", + "paint_name": "Tec-9 | Cracked Opal" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "722", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-722.png", + "paint_name": "Tec-9 | Snek-9" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "733", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-733.png", + "paint_name": "Tec-9 | Rust Leaf" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "738", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-738.png", + "paint_name": "Tec-9 | Orange Murano" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "791", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-791.png", + "paint_name": "Tec-9 | Remote Control" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "795", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-795.png", + "paint_name": "Tec-9 | Safety Net" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "816", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-816.png", + "paint_name": "Tec-9 | Fubar" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "839", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-839.png", + "paint_name": "Tec-9 | Bamboozle" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "889", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-889.png", + "paint_name": "Tec-9 | Decimator" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "905", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-905.png", + "paint_name": "Tec-9 | Flash Out" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "964", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-964.png", + "paint_name": "Tec-9 | Brother" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "1010", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-1010.png", + "paint_name": "Tec-9 | Phoenix Chalk" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "1024", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-1024.png", + "paint_name": "Tec-9 | Blast From the Past" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "1159", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-1159.png", + "paint_name": "Tec-9 | Slag" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "1235", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-1235.png", + "paint_name": "Tec-9 | Rebel" + }, + { + "weapon_defindex": 30, + "weapon_name": "weapon_tec9", + "paint": "1252", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_tec9-1252.png", + "paint_name": "Tec-9 | Mummy's Rot" + }, + { + "weapon_defindex": 31, + "weapon_name": "weapon_taser", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_taser.png", + "paint_name": "Zeus x27 | Default" + }, + { + "weapon_defindex": 31, + "weapon_name": "weapon_taser", + "paint": "1172", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_taser-1172.png", + "paint_name": "Zeus x27 | Olympus" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000.png", + "paint_name": "P2000 | Default" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "21", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-21.png", + "paint_name": "P2000 | Granite Marbleized" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "32", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-32.png", + "paint_name": "P2000 | Silver" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "71", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-71.png", + "paint_name": "P2000 | Scorpion" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "95", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-95.png", + "paint_name": "P2000 | Grassland" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "104", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-104.png", + "paint_name": "P2000 | Grassland Leaves" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "184", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-184.png", + "paint_name": "P2000 | Corticera" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "211", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-211.png", + "paint_name": "P2000 | Ocean Foam" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-246.png", + "paint_name": "P2000 | Amber Fade" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "275", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-275.png", + "paint_name": "P2000 | Red FragCam" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "327", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-327.png", + "paint_name": "P2000 | Chainmail" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "338", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-338.png", + "paint_name": "P2000 | Pulse" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "346", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-346.png", + "paint_name": "P2000 | Coach Class" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "357", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-357.png", + "paint_name": "P2000 | Ivory" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "389", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-389.png", + "paint_name": "P2000 | Fire Elemental" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "443", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-443.png", + "paint_name": "P2000 | Pathfinder" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "485", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-485.png", + "paint_name": "P2000 | Handgun" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "515", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-515.png", + "paint_name": "P2000 | Imperial" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "550", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-550.png", + "paint_name": "P2000 | Oceanic" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "591", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-591.png", + "paint_name": "P2000 | Imperial Dragon" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "635", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-635.png", + "paint_name": "P2000 | Turf" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "667", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-667.png", + "paint_name": "P2000 | Woodsman" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "700", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-700.png", + "paint_name": "P2000 | Urban Hazard" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "894", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-894.png", + "paint_name": "P2000 | Obsidian" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "951", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-951.png", + "paint_name": "P2000 | Acid Etched" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "960", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-960.png", + "paint_name": "P2000 | Gnarled" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "997", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-997.png", + "paint_name": "P2000 | Dispatch" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "1019", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-1019.png", + "paint_name": "P2000 | Panther Camo" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "1055", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-1055.png", + "paint_name": "P2000 | Space Race" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "1138", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-1138.png", + "paint_name": "P2000 | Lifted Spirits" + }, + { + "weapon_defindex": 32, + "weapon_name": "weapon_hkp2000", + "paint": "1224", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_hkp2000-1224.png", + "paint_name": "P2000 | Wicked Sick" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7.png", + "paint_name": "MP7 | Default" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-5.png", + "paint_name": "MP7 | Forest DDPAT" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "11", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-11.png", + "paint_name": "MP7 | Skulls" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "15", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-15.png", + "paint_name": "MP7 | Gunsmoke" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "28", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-28.png", + "paint_name": "MP7 | Anodized Navy" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "102", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-102.png", + "paint_name": "MP7 | Whiteout" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "141", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-141.png", + "paint_name": "MP7 | Orange Peel" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-175.png", + "paint_name": "MP7 | Scorched" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "209", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-209.png", + "paint_name": "MP7 | Groundwater" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "213", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-213.png", + "paint_name": "MP7 | Ocean Foam" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "245", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-245.png", + "paint_name": "MP7 | Army Recon" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "250", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-250.png", + "paint_name": "MP7 | Full Stop" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "354", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-354.png", + "paint_name": "MP7 | Urban Hazard" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "365", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-365.png", + "paint_name": "MP7 | Olive Plaid" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "423", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-423.png", + "paint_name": "MP7 | Armor Core" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "442", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-442.png", + "paint_name": "MP7 | Asterion" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "481", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-481.png", + "paint_name": "MP7 | Nemesis" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "500", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-500.png", + "paint_name": "MP7 | Special Delivery" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "536", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-536.png", + "paint_name": "MP7 | Impire" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "627", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-627.png", + "paint_name": "MP7 | Cirrus" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "649", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-649.png", + "paint_name": "MP7 | Akoben" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "696", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-696.png", + "paint_name": "MP7 | Bloodsport" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "719", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-719.png", + "paint_name": "MP7 | Powercore" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "728", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-728.png", + "paint_name": "MP7 | Teal Blossom" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "752", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-752.png", + "paint_name": "MP7 | Fade" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "782", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-782.png", + "paint_name": "MP7 | Motherboard" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "847", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-847.png", + "paint_name": "MP7 | Mischief" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "893", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-893.png", + "paint_name": "MP7 | Neon Ply" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "935", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-935.png", + "paint_name": "MP7 | Prey" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1007", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1007.png", + "paint_name": "MP7 | Vault Heist" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1023", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1023.png", + "paint_name": "MP7 | Tall Grass" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1096", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1096.png", + "paint_name": "MP7 | Guerrilla" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1133", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1133.png", + "paint_name": "MP7 | Abyssal Apparition" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1163", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1163.png", + "paint_name": "MP7 | Just Smile" + }, + { + "weapon_defindex": 33, + "weapon_name": "weapon_mp7", + "paint": "1246", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp7-1246.png", + "paint_name": "MP7 | Sunbaked" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9.png", + "paint_name": "MP9 | Default" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "33", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-33.png", + "paint_name": "MP9 | Hot Rod" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "39", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-39.png", + "paint_name": "MP9 | Bulldozer" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "61", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-61.png", + "paint_name": "MP9 | Hypnotic" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-100.png", + "paint_name": "MP9 | Storm" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "141", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-141.png", + "paint_name": "MP9 | Orange Peel" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "148", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-148.png", + "paint_name": "MP9 | Sand Dashed" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "199", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-199.png", + "paint_name": "MP9 | Dry Season" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "262", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-262.png", + "paint_name": "MP9 | Rose Iron" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-298.png", + "paint_name": "MP9 | Army Sheen" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "329", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-329.png", + "paint_name": "MP9 | Dark Age" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "366", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-366.png", + "paint_name": "MP9 | Green Plaid" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "368", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-368.png", + "paint_name": "MP9 | Setting Sun" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "386", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-386.png", + "paint_name": "MP9 | Dart" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "403", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-403.png", + "paint_name": "MP9 | Deadly Poison" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "448", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-448.png", + "paint_name": "MP9 | Pandora's Box" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "482", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-482.png", + "paint_name": "MP9 | Ruby Poison Dart" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "549", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-549.png", + "paint_name": "MP9 | Bioleak" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "609", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-609.png", + "paint_name": "MP9 | Airlock" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "630", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-630.png", + "paint_name": "MP9 | Sand Scale" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "679", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-679.png", + "paint_name": "MP9 | Goo" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "697", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-697.png", + "paint_name": "MP9 | Black Sand" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "715", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-715.png", + "paint_name": "MP9 | Capillary" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "734", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-734.png", + "paint_name": "MP9 | Wild Lily" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "755", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-755.png", + "paint_name": "MP9 | Slide" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "804", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-804.png", + "paint_name": "MP9 | Modest Threat" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "820", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-820.png", + "paint_name": "MP9 | Music Box" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "867", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-867.png", + "paint_name": "MP9 | Stained Glass" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "910", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-910.png", + "paint_name": "MP9 | Hydra" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "931", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-931.png", + "paint_name": "MP9 | Old Roots" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "1037", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-1037.png", + "paint_name": "MP9 | Food Chain" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "1094", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-1094.png", + "paint_name": "MP9 | Mount Fuji" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "1134", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-1134.png", + "paint_name": "MP9 | Starlight Protector" + }, + { + "weapon_defindex": 34, + "weapon_name": "weapon_mp9", + "paint": "1225", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_mp9-1225.png", + "paint_name": "MP9 | Featherweight" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova.png", + "paint_name": "Nova | Default" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "3", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-3.png", + "paint_name": "Nova | Candy Apple" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "25", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-25.png", + "paint_name": "Nova | Forest Leaves" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "62", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-62.png", + "paint_name": "Nova | Bloomstick" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "99", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-99.png", + "paint_name": "Nova | Sand Dune" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "107", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-107.png", + "paint_name": "Nova | Polar Mesh" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "158", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-158.png", + "paint_name": "Nova | Walnut" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "164", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-164.png", + "paint_name": "Nova | Modern Hunter" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "166", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-166.png", + "paint_name": "Nova | Blaze Orange" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "170", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-170.png", + "paint_name": "Nova | Predator" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "191", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-191.png", + "paint_name": "Nova | Tempest" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "214", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-214.png", + "paint_name": "Nova | Graphite" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "225", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-225.png", + "paint_name": "Nova | Ghost Camo" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "248", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-248.png", + "paint_name": "Nova | Red Quartz" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "263", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-263.png", + "paint_name": "Nova | Rising Skull" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "286", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-286.png", + "paint_name": "Nova | Antique" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "294", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-294.png", + "paint_name": "Nova | Green Apple" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-298.png", + "paint_name": "Nova | Army Sheen" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "299", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-299.png", + "paint_name": "Nova | Caged Steel" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "323", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-323.png", + "paint_name": "Nova | Rust Coat" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "356", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-356.png", + "paint_name": "Nova | Koi" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "450", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-450.png", + "paint_name": "Nova | Moon in Libra" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "484", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-484.png", + "paint_name": "Nova | Ranger" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "537", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-537.png", + "paint_name": "Nova | Hyper Beast" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "590", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-590.png", + "paint_name": "Nova | Exo" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "634", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-634.png", + "paint_name": "Nova | Gila" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "699", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-699.png", + "paint_name": "Nova | Wild Six" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "716", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-716.png", + "paint_name": "Nova | Toy Soldier" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "746", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-746.png", + "paint_name": "Nova | Baroque Orange" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "785", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-785.png", + "paint_name": "Nova | Mandrel" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "809", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-809.png", + "paint_name": "Nova | Wood Fired" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "890", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-890.png", + "paint_name": "Nova | Plume" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "929", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-929.png", + "paint_name": "Nova | Quick Sand" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "987", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-987.png", + "paint_name": "Nova | Clear Polymer" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "1051", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-1051.png", + "paint_name": "Nova | Windblown" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "1077", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-1077.png", + "paint_name": "Nova | Interlock" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "1162", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-1162.png", + "paint_name": "Nova | Dark Sigil" + }, + { + "weapon_defindex": 35, + "weapon_name": "weapon_nova", + "paint": "1247", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_nova-1247.png", + "paint_name": "Nova | Sobek's Bite" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250.png", + "paint_name": "P250 | Default" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "15", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-15.png", + "paint_name": "P250 | Gunsmoke" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "27", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-27.png", + "paint_name": "P250 | Bone Mask" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "34", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-34.png", + "paint_name": "P250 | Metallic DDPAT" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-77.png", + "paint_name": "P250 | Boreal Forest" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "78", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-78.png", + "paint_name": "P250 | Forest Night" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "99", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-99.png", + "paint_name": "P250 | Sand Dune" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "102", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-102.png", + "paint_name": "P250 | Whiteout" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "125", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-125.png", + "paint_name": "P250 | X-Ray" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "162", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-162.png", + "paint_name": "P250 | Splash" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "164", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-164.png", + "paint_name": "P250 | Modern Hunter" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "168", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-168.png", + "paint_name": "P250 | Nuclear Threat" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "207", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-207.png", + "paint_name": "P250 | Facets" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "219", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-219.png", + "paint_name": "P250 | Hive" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "230", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-230.png", + "paint_name": "P250 | Steel Disruption" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "258", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-258.png", + "paint_name": "P250 | Mehndi" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "271", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-271.png", + "paint_name": "P250 | Undertow" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "295", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-295.png", + "paint_name": "P250 | Franklin" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "358", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-358.png", + "paint_name": "P250 | Supernova" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "373", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-373.png", + "paint_name": "P250 | Contamination" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "388", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-388.png", + "paint_name": "P250 | Cartel" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "404", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-404.png", + "paint_name": "P250 | Muertos" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "426", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-426.png", + "paint_name": "P250 | Valence" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "466", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-466.png", + "paint_name": "P250 | Crimson Kimono" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "467", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-467.png", + "paint_name": "P250 | Mint Kimono" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "501", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-501.png", + "paint_name": "P250 | Wingshot" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "551", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-551.png", + "paint_name": "P250 | Asiimov" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "592", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-592.png", + "paint_name": "P250 | Iron Clad" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "650", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-650.png", + "paint_name": "P250 | Ripple" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "668", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-668.png", + "paint_name": "P250 | Red Rock" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "678", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-678.png", + "paint_name": "P250 | See Ya Later" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "741", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-741.png", + "paint_name": "P250 | Dark Filigree" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "749", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-749.png", + "paint_name": "P250 | Vino Primo" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "777", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-777.png", + "paint_name": "P250 | Facility Draft" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "786", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-786.png", + "paint_name": "P250 | Exchanger" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "813", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-813.png", + "paint_name": "P250 | Nevermore" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "825", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-825.png", + "paint_name": "P250 | Drought" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "848", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-848.png", + "paint_name": "P250 | Verdigris" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "907", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-907.png", + "paint_name": "P250 | Inferno" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "928", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-928.png", + "paint_name": "P250 | Black & Tan" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "968", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-968.png", + "paint_name": "P250 | Cassette" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "982", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-982.png", + "paint_name": "P250 | Contaminant" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1030", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1030.png", + "paint_name": "P250 | Bengal Tiger" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1044", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1044.png", + "paint_name": "P250 | Cyber Shell" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1081", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1081.png", + "paint_name": "P250 | Digital Architect" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1153", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1153.png", + "paint_name": "P250 | Visions" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1230", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1230.png", + "paint_name": "P250 | Re.built" + }, + { + "weapon_defindex": 36, + "weapon_name": "weapon_p250", + "paint": "1248", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_p250-1248.png", + "paint_name": "P250 | Apep's Curse" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20.png", + "paint_name": "SCAR-20 | Default" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "46", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-46.png", + "paint_name": "SCAR-20 | Contractor" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "70", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-70.png", + "paint_name": "SCAR-20 | Carbon Fiber" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "100", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-100.png", + "paint_name": "SCAR-20 | Storm" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "116", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-116.png", + "paint_name": "SCAR-20 | Sand Mesh" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "157", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-157.png", + "paint_name": "SCAR-20 | Palm" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "159", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-159.png", + "paint_name": "SCAR-20 | Brass" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "165", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-165.png", + "paint_name": "SCAR-20 | Splash Jam" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "196", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-196.png", + "paint_name": "SCAR-20 | Emerald" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "232", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-232.png", + "paint_name": "SCAR-20 | Crimson Web" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-298.png", + "paint_name": "SCAR-20 | Army Sheen" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "312", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-312.png", + "paint_name": "SCAR-20 | Cyrex" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "391", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-391.png", + "paint_name": "SCAR-20 | Cardiac" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "406", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-406.png", + "paint_name": "SCAR-20 | Grotto" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "502", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-502.png", + "paint_name": "SCAR-20 | Green Marine" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "518", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-518.png", + "paint_name": "SCAR-20 | Outbreak" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "597", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-597.png", + "paint_name": "SCAR-20 | Bloodsport" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "612", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-612.png", + "paint_name": "SCAR-20 | Powercore" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "642", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-642.png", + "paint_name": "SCAR-20 | Blueprint" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "685", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-685.png", + "paint_name": "SCAR-20 | Jungle Slipstream" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "865", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-865.png", + "paint_name": "SCAR-20 | Stone Mosaico" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "896", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-896.png", + "paint_name": "SCAR-20 | Torn" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "914", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-914.png", + "paint_name": "SCAR-20 | Assault" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "954", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-954.png", + "paint_name": "SCAR-20 | Enforcer" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "1028", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-1028.png", + "paint_name": "SCAR-20 | Magna Carta" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "1139", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-1139.png", + "paint_name": "SCAR-20 | Poultrygeist" + }, + { + "weapon_defindex": 38, + "weapon_name": "weapon_scar20", + "paint": "1226", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_scar20-1226.png", + "paint_name": "SCAR-20 | Fragments" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556.png", + "paint_name": "SG 553 | Default" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "28", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-28.png", + "paint_name": "SG 553 | Anodized Navy" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "39", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-39.png", + "paint_name": "SG 553 | Bulldozer" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "61", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-61.png", + "paint_name": "SG 553 | Hypnotic" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-98.png", + "paint_name": "SG 553 | Ultraviolet" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "101", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-101.png", + "paint_name": "SG 553 | Tornado" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "136", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-136.png", + "paint_name": "SG 553 | Waves Perforated" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "186", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-186.png", + "paint_name": "SG 553 | Wave Spray" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "243", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-243.png", + "paint_name": "SG 553 | Gator Mesh" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "247", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-247.png", + "paint_name": "SG 553 | Damascus Steel" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "287", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-287.png", + "paint_name": "SG 553 | Pulse" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-298.png", + "paint_name": "SG 553 | Army Sheen" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "363", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-363.png", + "paint_name": "SG 553 | Traveler" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "378", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-378.png", + "paint_name": "SG 553 | Fallout Warning" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "487", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-487.png", + "paint_name": "SG 553 | Cyrex" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "519", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-519.png", + "paint_name": "SG 553 | Tiger Moth" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "553", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-553.png", + "paint_name": "SG 553 | Atlas" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "598", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-598.png", + "paint_name": "SG 553 | Aerial" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "613", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-613.png", + "paint_name": "SG 553 | Triarch" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "686", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-686.png", + "paint_name": "SG 553 | Phantom" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "702", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-702.png", + "paint_name": "SG 553 | Aloha" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "750", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-750.png", + "paint_name": "SG 553 | Integrale" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "765", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-765.png", + "paint_name": "SG 553 | Desert Blossom" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "815", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-815.png", + "paint_name": "SG 553 | Danger Close" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "861", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-861.png", + "paint_name": "SG 553 | Barricade" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "864", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-864.png", + "paint_name": "SG 553 | Candy Apple" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "897", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-897.png", + "paint_name": "SG 553 | Colony IV" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "934", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-934.png", + "paint_name": "SG 553 | Bleached" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "955", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-955.png", + "paint_name": "SG 553 | Darkwing" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "966", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-966.png", + "paint_name": "SG 553 | Ol' Rusty" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "1022", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-1022.png", + "paint_name": "SG 553 | Lush Ruins" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "1048", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-1048.png", + "paint_name": "SG 553 | Heavy Metal" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "1084", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-1084.png", + "paint_name": "SG 553 | Hazard Pay" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "1151", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-1151.png", + "paint_name": "SG 553 | Dragon Tech" + }, + { + "weapon_defindex": 39, + "weapon_name": "weapon_sg556", + "paint": "1234", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_sg556-1234.png", + "paint_name": "SG 553 | Cyberforce" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08.png", + "paint_name": "SSG 08 | Default" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "26", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-26.png", + "paint_name": "SSG 08 | Lichen Dashed" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "60", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-60.png", + "paint_name": "SSG 08 | Dark Water" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "70", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-70.png", + "paint_name": "SSG 08 | Carbon Fiber" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "96", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-96.png", + "paint_name": "SSG 08 | Blue Spruce" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "99", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-99.png", + "paint_name": "SSG 08 | Sand Dune" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "147", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-147.png", + "paint_name": "SSG 08 | Jungle Dashed" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "200", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-200.png", + "paint_name": "SSG 08 | Mayan Dreams" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "222", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-222.png", + "paint_name": "SSG 08 | Blood in the Water" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "233", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-233.png", + "paint_name": "SSG 08 | Tropical Storm" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "253", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-253.png", + "paint_name": "SSG 08 | Acid Fade" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "304", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-304.png", + "paint_name": "SSG 08 | Slashed" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "319", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-319.png", + "paint_name": "SSG 08 | Detour" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "361", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-361.png", + "paint_name": "SSG 08 | Abyss" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "503", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-503.png", + "paint_name": "SSG 08 | Big Iron" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "538", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-538.png", + "paint_name": "SSG 08 | Necropos" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "554", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-554.png", + "paint_name": "SSG 08 | Ghost Crusader" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "624", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-624.png", + "paint_name": "SSG 08 | Dragonfire" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "670", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-670.png", + "paint_name": "SSG 08 | Death's Head" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "743", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-743.png", + "paint_name": "SSG 08 | Orange Filigree" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "751", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-751.png", + "paint_name": "SSG 08 | Hand Brake" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "762", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-762.png", + "paint_name": "SSG 08 | Red Stone" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "868", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-868.png", + "paint_name": "SSG 08 | Sea Calico" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "899", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-899.png", + "paint_name": "SSG 08 | Bloodshot" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "935", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-935.png", + "paint_name": "SSG 08 | Prey" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "956", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-956.png", + "paint_name": "SSG 08 | Fever Dream" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "967", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-967.png", + "paint_name": "SSG 08 | Mainframe 001" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "989", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-989.png", + "paint_name": "SSG 08 | Parallax" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "996", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-996.png", + "paint_name": "SSG 08 | Threat Detected" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "1052", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-1052.png", + "paint_name": "SSG 08 | Death Strike" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "1060", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-1060.png", + "paint_name": "SSG 08 | Spring Twilly" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "1101", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-1101.png", + "paint_name": "SSG 08 | Turbo Peek" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "1161", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-1161.png", + "paint_name": "SSG 08 | Dezastre" + }, + { + "weapon_defindex": 40, + "weapon_name": "weapon_ssg08", + "paint": "1251", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_ssg08-1251.png", + "paint_name": "SSG 08 | Azure Glyph" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer.png", + "paint_name": "M4A1-S | Default" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "60", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-60.png", + "paint_name": "M4A1-S | Dark Water" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-77.png", + "paint_name": "M4A1-S | Boreal Forest" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "189", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-189.png", + "paint_name": "M4A1-S | Bright Water" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "217", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-217.png", + "paint_name": "M4A1-S | Blood Tiger" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "235", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-235.png", + "paint_name": "M4A1-S | VariCamo" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "254", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-254.png", + "paint_name": "M4A1-S | Nitro" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "257", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-257.png", + "paint_name": "M4A1-S | Guardian" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "301", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-301.png", + "paint_name": "M4A1-S | Atomic Alloy" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "321", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-321.png", + "paint_name": "M4A1-S | Master Piece" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "326", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-326.png", + "paint_name": "M4A1-S | Knight" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "360", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-360.png", + "paint_name": "M4A1-S | Cyrex" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "383", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-383.png", + "paint_name": "M4A1-S | Basilisk" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "430", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-430.png", + "paint_name": "M4A1-S | Hyper Beast" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "440", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-440.png", + "paint_name": "M4A1-S | Icarus Fell" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "445", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-445.png", + "paint_name": "M4A1-S | Hot Rod" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "497", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-497.png", + "paint_name": "M4A1-S | Golden Coil" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "548", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-548.png", + "paint_name": "M4A1-S | Chantico's Fire" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "587", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-587.png", + "paint_name": "M4A1-S | Mecha Industries" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "631", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-631.png", + "paint_name": "M4A1-S | Flashback" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "644", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-644.png", + "paint_name": "M4A1-S | Decimator" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "663", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-663.png", + "paint_name": "M4A1-S | Briefing" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "681", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-681.png", + "paint_name": "M4A1-S | Leaded Glass" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "714", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-714.png", + "paint_name": "M4A1-S | Nightmare" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "792", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-792.png", + "paint_name": "M4A1-S | Control Panel" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "862", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-862.png", + "paint_name": "M4A1-S | Moss Quartz" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "946", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-946.png", + "paint_name": "M4A1-S | Player Two" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "984", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-984.png", + "paint_name": "M4A1-S | Printstream" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1001", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1001.png", + "paint_name": "M4A1-S | Welcome to the Jungle" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1017", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1017.png", + "paint_name": "M4A1-S | Blue Phosphor" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1059", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1059.png", + "paint_name": "M4A1-S | Fizzy POP" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1073", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1073.png", + "paint_name": "M4A1-S | Imminent Danger" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1130", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1130.png", + "paint_name": "M4A1-S | Night Terror" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1166", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1166.png", + "paint_name": "M4A1-S | Black Lotus" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1223", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1223.png", + "paint_name": "M4A1-S | Emphorosaur-S" + }, + { + "weapon_defindex": 60, + "weapon_name": "weapon_m4a1_silencer", + "paint": "1243", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_m4a1_silencer-1243.png", + "paint_name": "M4A1-S | Mud-Spec" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer.png", + "paint_name": "USP-S | Default" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "25", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-25.png", + "paint_name": "USP-S | Forest Leaves" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "60", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-60.png", + "paint_name": "USP-S | Dark Water" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "183", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-183.png", + "paint_name": "USP-S | Overgrowth" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "217", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-217.png", + "paint_name": "USP-S | Blood Tiger" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "221", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-221.png", + "paint_name": "USP-S | Serum" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "236", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-236.png", + "paint_name": "USP-S | Night Ops" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "277", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-277.png", + "paint_name": "USP-S | Stainless" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "290", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-290.png", + "paint_name": "USP-S | Guardian" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "313", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-313.png", + "paint_name": "USP-S | Orion" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "318", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-318.png", + "paint_name": "USP-S | Road Rash" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "332", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-332.png", + "paint_name": "USP-S | Royal Blue" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "339", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-339.png", + "paint_name": "USP-S | Caiman" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "364", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-364.png", + "paint_name": "USP-S | Business Class" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "443", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-443.png", + "paint_name": "USP-S | Pathfinder" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "454", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-454.png", + "paint_name": "USP-S | Para Green" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "489", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-489.png", + "paint_name": "USP-S | Torque" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "504", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-504.png", + "paint_name": "USP-S | Kill Confirmed" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "540", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-540.png", + "paint_name": "USP-S | Lead Conduit" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "637", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-637.png", + "paint_name": "USP-S | Cyrex" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "653", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-653.png", + "paint_name": "USP-S | Neo-Noir" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "657", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-657.png", + "paint_name": "USP-S | Blueprint" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "705", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-705.png", + "paint_name": "USP-S | Cortex" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "796", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-796.png", + "paint_name": "USP-S | Check Engine" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "817", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-817.png", + "paint_name": "USP-S | Flashback" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "818", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-818.png", + "paint_name": "USP-S | Purple DDPAT" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "922", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-922.png", + "paint_name": "USP-S | Orange Anolis" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "991", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-991.png", + "paint_name": "USP-S | Monster Mashup" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1027", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1027.png", + "paint_name": "USP-S | Target Acquired" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1031", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1031.png", + "paint_name": "USP-S | Ancient Visions" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1040", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1040.png", + "paint_name": "USP-S | The Traitor" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1065", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1065.png", + "paint_name": "USP-S | Whiteout" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1102", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1102.png", + "paint_name": "USP-S | Black Lotus" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1136", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1136.png", + "paint_name": "USP-S | Ticket to Hell" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1142", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1142.png", + "paint_name": "USP-S | Printstream" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1173", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1173.png", + "paint_name": "USP-S | Jawbreaker" + }, + { + "weapon_defindex": 61, + "weapon_name": "weapon_usp_silencer", + "paint": "1253", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_usp_silencer-1253.png", + "paint_name": "USP-S | Desert Tactical" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a.png", + "paint_name": "CZ75-Auto | Default" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-12.png", + "paint_name": "CZ75-Auto | Crimson Web" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "32", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-32.png", + "paint_name": "CZ75-Auto | Silver" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "147", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-147.png", + "paint_name": "CZ75-Auto | Jungle Dashed" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "218", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-218.png", + "paint_name": "CZ75-Auto | Hexane" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "268", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-268.png", + "paint_name": "CZ75-Auto | Tread Plate" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "269", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-269.png", + "paint_name": "CZ75-Auto | The Fuschia Is Now" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "270", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-270.png", + "paint_name": "CZ75-Auto | Victoria" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "297", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-297.png", + "paint_name": "CZ75-Auto | Tuxedo" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "298", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-298.png", + "paint_name": "CZ75-Auto | Army Sheen" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "315", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-315.png", + "paint_name": "CZ75-Auto | Poison Dart" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "322", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-322.png", + "paint_name": "CZ75-Auto | Nitro" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "325", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-325.png", + "paint_name": "CZ75-Auto | Chalice" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "333", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-333.png", + "paint_name": "CZ75-Auto | Indigo" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "334", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-334.png", + "paint_name": "CZ75-Auto | Twist" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "350", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-350.png", + "paint_name": "CZ75-Auto | Tigris" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "366", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-366.png", + "paint_name": "CZ75-Auto | Green Plaid" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "435", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-435.png", + "paint_name": "CZ75-Auto | Pole Position" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "453", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-453.png", + "paint_name": "CZ75-Auto | Emerald" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "476", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-476.png", + "paint_name": "CZ75-Auto | Yellow Jacket" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "543", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-543.png", + "paint_name": "CZ75-Auto | Red Astor" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "602", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-602.png", + "paint_name": "CZ75-Auto | Imprint" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "622", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-622.png", + "paint_name": "CZ75-Auto | Polymer" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "643", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-643.png", + "paint_name": "CZ75-Auto | Xiangliu" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "687", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-687.png", + "paint_name": "CZ75-Auto | Tacticat" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "709", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-709.png", + "paint_name": "CZ75-Auto | Eco" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "859", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-859.png", + "paint_name": "CZ75-Auto | Emerald Quartz" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "933", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-933.png", + "paint_name": "CZ75-Auto | Midnight Palm" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "944", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-944.png", + "paint_name": "CZ75-Auto | Distressed" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "976", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-976.png", + "paint_name": "CZ75-Auto | Vendetta" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "1036", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-1036.png", + "paint_name": "CZ75-Auto | Circaetus" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "1064", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-1064.png", + "paint_name": "CZ75-Auto | Syndicate" + }, + { + "weapon_defindex": 63, + "weapon_name": "weapon_cz75a", + "paint": "1076", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_cz75a-1076.png", + "paint_name": "CZ75-Auto | Framework" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver.png", + "paint_name": "R8 Revolver | Default" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-12.png", + "paint_name": "R8 Revolver | Crimson Web" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "27", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-27.png", + "paint_name": "R8 Revolver | Bone Mask" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "37", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-37.png", + "paint_name": "R8 Revolver | Blaze" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-40.png", + "paint_name": "R8 Revolver | Night" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "522", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-522.png", + "paint_name": "R8 Revolver | Fade" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "523", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-523.png", + "paint_name": "R8 Revolver | Amber Fade" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "595", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-595.png", + "paint_name": "R8 Revolver | Reboot" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "683", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-683.png", + "paint_name": "R8 Revolver | Llama Cannon" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "701", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-701.png", + "paint_name": "R8 Revolver | Grip" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "721", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-721.png", + "paint_name": "R8 Revolver | Survivalist" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "798", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-798.png", + "paint_name": "R8 Revolver | Nitro" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "843", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-843.png", + "paint_name": "R8 Revolver | Skull Crusher" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "866", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-866.png", + "paint_name": "R8 Revolver | Canal Spray" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "892", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-892.png", + "paint_name": "R8 Revolver | Memento" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "924", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-924.png", + "paint_name": "R8 Revolver | Desert Brush" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "952", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-952.png", + "paint_name": "R8 Revolver | Bone Forged" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "1011", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-1011.png", + "paint_name": "R8 Revolver | Phoenix Marker" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "1047", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-1047.png", + "paint_name": "R8 Revolver | Junk Yard" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "1145", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-1145.png", + "paint_name": "R8 Revolver | Crazy 8" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "1232", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-1232.png", + "paint_name": "R8 Revolver | Banana Cannon" + }, + { + "weapon_defindex": 64, + "weapon_name": "weapon_revolver", + "paint": "1237", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_revolver-1237.png", + "paint_name": "R8 Revolver | Inlay" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet.png", + "paint_name": "★ Bayonet | Default" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-5.png", + "paint_name": "★ Bayonet | Forest DDPAT" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-12.png", + "paint_name": "★ Bayonet | Crimson Web" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-38.png", + "paint_name": "★ Bayonet | Fade" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-40.png", + "paint_name": "★ Bayonet | Night" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-42.png", + "paint_name": "★ Bayonet | Blue Steel" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-43.png", + "paint_name": "★ Bayonet | Stained" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-44.png", + "paint_name": "★ Bayonet | Case Hardened" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-59.png", + "paint_name": "★ Bayonet | Slaughter" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-72.png", + "paint_name": "★ Bayonet | Safari Mesh" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-77.png", + "paint_name": "★ Bayonet | Boreal Forest" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-98.png", + "paint_name": "★ Bayonet | Ultraviolet" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-143.png", + "paint_name": "★ Bayonet | Urban Masked" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-175.png", + "paint_name": "★ Bayonet | Scorched" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-409.png", + "paint_name": "★ Bayonet | Tiger Tooth" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "410", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-410.png", + "paint_name": "★ Bayonet | Damascus Steel" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-413.png", + "paint_name": "★ Bayonet | Marble Fade" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-414.png", + "paint_name": "★ Bayonet | Rust Coat" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-415.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-416.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-417.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-418.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-419.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-420.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-421.png", + "paint_name": "★ Bayonet | Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "558", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-558.png", + "paint_name": "★ Bayonet | Lore" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "563", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-563.png", + "paint_name": "★ Bayonet | Black Laminate" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-568.png", + "paint_name": "★ Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-569.png", + "paint_name": "★ Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-570.png", + "paint_name": "★ Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-571.png", + "paint_name": "★ Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-572.png", + "paint_name": "★ Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "573", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-573.png", + "paint_name": "★ Bayonet | Autotronic" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "578", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-578.png", + "paint_name": "★ Bayonet | Bright Water" + }, + { + "weapon_defindex": 500, + "weapon_name": "weapon_bayonet", + "paint": "580", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_bayonet-580.png", + "paint_name": "★ Bayonet | Freehand" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css.png", + "paint_name": "★ Classic Knife | Default" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-5.png", + "paint_name": "★ Classic Knife | Forest DDPAT" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-12.png", + "paint_name": "★ Classic Knife | Crimson Web" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-38.png", + "paint_name": "★ Classic Knife | Fade" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-42.png", + "paint_name": "★ Classic Knife | Blue Steel" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-43.png", + "paint_name": "★ Classic Knife | Stained" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-44.png", + "paint_name": "★ Classic Knife | Case Hardened" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-59.png", + "paint_name": "★ Classic Knife | Slaughter" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-72.png", + "paint_name": "★ Classic Knife | Safari Mesh" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-77.png", + "paint_name": "★ Classic Knife | Boreal Forest" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-143.png", + "paint_name": "★ Classic Knife | Urban Masked" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-175.png", + "paint_name": "★ Classic Knife | Scorched" + }, + { + "weapon_defindex": 503, + "weapon_name": "weapon_knife_css", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_css-735.png", + "paint_name": "★ Classic Knife | Night Stripe" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip.png", + "paint_name": "★ Flip Knife | Default" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-5.png", + "paint_name": "★ Flip Knife | Forest DDPAT" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-12.png", + "paint_name": "★ Flip Knife | Crimson Web" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-38.png", + "paint_name": "★ Flip Knife | Fade" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-40.png", + "paint_name": "★ Flip Knife | Night" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-42.png", + "paint_name": "★ Flip Knife | Blue Steel" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-43.png", + "paint_name": "★ Flip Knife | Stained" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-44.png", + "paint_name": "★ Flip Knife | Case Hardened" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-59.png", + "paint_name": "★ Flip Knife | Slaughter" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-72.png", + "paint_name": "★ Flip Knife | Safari Mesh" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-77.png", + "paint_name": "★ Flip Knife | Boreal Forest" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-98.png", + "paint_name": "★ Flip Knife | Ultraviolet" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-143.png", + "paint_name": "★ Flip Knife | Urban Masked" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-175.png", + "paint_name": "★ Flip Knife | Scorched" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-409.png", + "paint_name": "★ Flip Knife | Tiger Tooth" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "410", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-410.png", + "paint_name": "★ Flip Knife | Damascus Steel" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-413.png", + "paint_name": "★ Flip Knife | Marble Fade" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-414.png", + "paint_name": "★ Flip Knife | Rust Coat" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-415.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-416.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-417.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-418.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-419.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-420.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-421.png", + "paint_name": "★ Flip Knife | Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "559", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-559.png", + "paint_name": "★ Flip Knife | Lore" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "564", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-564.png", + "paint_name": "★ Flip Knife | Black Laminate" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-568.png", + "paint_name": "★ Flip Knife | Gamma Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-569.png", + "paint_name": "★ Flip Knife | Gamma Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-570.png", + "paint_name": "★ Flip Knife | Gamma Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-571.png", + "paint_name": "★ Flip Knife | Gamma Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-572.png", + "paint_name": "★ Flip Knife | Gamma Doppler" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "574", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-574.png", + "paint_name": "★ Flip Knife | Autotronic" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "578", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-578.png", + "paint_name": "★ Flip Knife | Bright Water" + }, + { + "weapon_defindex": 505, + "weapon_name": "weapon_knife_flip", + "paint": "580", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_flip-580.png", + "paint_name": "★ Flip Knife | Freehand" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut.png", + "paint_name": "★ Gut Knife | Default" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-5.png", + "paint_name": "★ Gut Knife | Forest DDPAT" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-12.png", + "paint_name": "★ Gut Knife | Crimson Web" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-38.png", + "paint_name": "★ Gut Knife | Fade" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-40.png", + "paint_name": "★ Gut Knife | Night" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-42.png", + "paint_name": "★ Gut Knife | Blue Steel" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-43.png", + "paint_name": "★ Gut Knife | Stained" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-44.png", + "paint_name": "★ Gut Knife | Case Hardened" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-59.png", + "paint_name": "★ Gut Knife | Slaughter" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-72.png", + "paint_name": "★ Gut Knife | Safari Mesh" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-77.png", + "paint_name": "★ Gut Knife | Boreal Forest" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-98.png", + "paint_name": "★ Gut Knife | Ultraviolet" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-143.png", + "paint_name": "★ Gut Knife | Urban Masked" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-175.png", + "paint_name": "★ Gut Knife | Scorched" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-409.png", + "paint_name": "★ Gut Knife | Tiger Tooth" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "410", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-410.png", + "paint_name": "★ Gut Knife | Damascus Steel" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-413.png", + "paint_name": "★ Gut Knife | Marble Fade" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-414.png", + "paint_name": "★ Gut Knife | Rust Coat" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-415.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-416.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-417.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-418.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-419.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-420.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-421.png", + "paint_name": "★ Gut Knife | Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "560", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-560.png", + "paint_name": "★ Gut Knife | Lore" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "565", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-565.png", + "paint_name": "★ Gut Knife | Black Laminate" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-568.png", + "paint_name": "★ Gut Knife | Gamma Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-569.png", + "paint_name": "★ Gut Knife | Gamma Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-570.png", + "paint_name": "★ Gut Knife | Gamma Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-571.png", + "paint_name": "★ Gut Knife | Gamma Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-572.png", + "paint_name": "★ Gut Knife | Gamma Doppler" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "575", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-575.png", + "paint_name": "★ Gut Knife | Autotronic" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "578", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-578.png", + "paint_name": "★ Gut Knife | Bright Water" + }, + { + "weapon_defindex": 506, + "weapon_name": "weapon_knife_gut", + "paint": "580", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gut-580.png", + "paint_name": "★ Gut Knife | Freehand" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit.png", + "paint_name": "★ Karambit | Default" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-5.png", + "paint_name": "★ Karambit | Forest DDPAT" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-12.png", + "paint_name": "★ Karambit | Crimson Web" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-38.png", + "paint_name": "★ Karambit | Fade" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-40.png", + "paint_name": "★ Karambit | Night" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-42.png", + "paint_name": "★ Karambit | Blue Steel" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-43.png", + "paint_name": "★ Karambit | Stained" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-44.png", + "paint_name": "★ Karambit | Case Hardened" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-59.png", + "paint_name": "★ Karambit | Slaughter" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-72.png", + "paint_name": "★ Karambit | Safari Mesh" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-77.png", + "paint_name": "★ Karambit | Boreal Forest" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-98.png", + "paint_name": "★ Karambit | Ultraviolet" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-143.png", + "paint_name": "★ Karambit | Urban Masked" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-175.png", + "paint_name": "★ Karambit | Scorched" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-409.png", + "paint_name": "★ Karambit | Tiger Tooth" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "410", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-410.png", + "paint_name": "★ Karambit | Damascus Steel" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-413.png", + "paint_name": "★ Karambit | Marble Fade" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-414.png", + "paint_name": "★ Karambit | Rust Coat" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-415.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-416.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-417.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-418.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-419.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-420.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-421.png", + "paint_name": "★ Karambit | Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "561", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-561.png", + "paint_name": "★ Karambit | Lore" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "566", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-566.png", + "paint_name": "★ Karambit | Black Laminate" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-568.png", + "paint_name": "★ Karambit | Gamma Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-569.png", + "paint_name": "★ Karambit | Gamma Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-570.png", + "paint_name": "★ Karambit | Gamma Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-571.png", + "paint_name": "★ Karambit | Gamma Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-572.png", + "paint_name": "★ Karambit | Gamma Doppler" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "576", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-576.png", + "paint_name": "★ Karambit | Autotronic" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "578", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-578.png", + "paint_name": "★ Karambit | Bright Water" + }, + { + "weapon_defindex": 507, + "weapon_name": "weapon_knife_karambit", + "paint": "582", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_karambit-582.png", + "paint_name": "★ Karambit | Freehand" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet.png", + "paint_name": "★ M9 Bayonet | Default" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-5.png", + "paint_name": "★ M9 Bayonet | Forest DDPAT" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-12.png", + "paint_name": "★ M9 Bayonet | Crimson Web" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-38.png", + "paint_name": "★ M9 Bayonet | Fade" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-40.png", + "paint_name": "★ M9 Bayonet | Night" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-42.png", + "paint_name": "★ M9 Bayonet | Blue Steel" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-43.png", + "paint_name": "★ M9 Bayonet | Stained" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-44.png", + "paint_name": "★ M9 Bayonet | Case Hardened" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-59.png", + "paint_name": "★ M9 Bayonet | Slaughter" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-72.png", + "paint_name": "★ M9 Bayonet | Safari Mesh" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-77.png", + "paint_name": "★ M9 Bayonet | Boreal Forest" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-98.png", + "paint_name": "★ M9 Bayonet | Ultraviolet" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-143.png", + "paint_name": "★ M9 Bayonet | Urban Masked" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-175.png", + "paint_name": "★ M9 Bayonet | Scorched" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-409.png", + "paint_name": "★ M9 Bayonet | Tiger Tooth" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-411.png", + "paint_name": "★ M9 Bayonet | Damascus Steel" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-413.png", + "paint_name": "★ M9 Bayonet | Marble Fade" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-414.png", + "paint_name": "★ M9 Bayonet | Rust Coat" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-415.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-416.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-417.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-418.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-419.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-420.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-421.png", + "paint_name": "★ M9 Bayonet | Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "562", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-562.png", + "paint_name": "★ M9 Bayonet | Lore" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "567", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-567.png", + "paint_name": "★ M9 Bayonet | Black Laminate" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-568.png", + "paint_name": "★ M9 Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-569.png", + "paint_name": "★ M9 Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-570.png", + "paint_name": "★ M9 Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-571.png", + "paint_name": "★ M9 Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-572.png", + "paint_name": "★ M9 Bayonet | Gamma Doppler" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "577", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-577.png", + "paint_name": "★ M9 Bayonet | Autotronic" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-579.png", + "paint_name": "★ M9 Bayonet | Bright Water" + }, + { + "weapon_defindex": 508, + "weapon_name": "weapon_knife_m9_bayonet", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_m9_bayonet-581.png", + "paint_name": "★ M9 Bayonet | Freehand" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical.png", + "paint_name": "★ Huntsman Knife | Default" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-5.png", + "paint_name": "★ Huntsman Knife | Forest DDPAT" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-12.png", + "paint_name": "★ Huntsman Knife | Crimson Web" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-38.png", + "paint_name": "★ Huntsman Knife | Fade" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-40.png", + "paint_name": "★ Huntsman Knife | Night" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-42.png", + "paint_name": "★ Huntsman Knife | Blue Steel" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-43.png", + "paint_name": "★ Huntsman Knife | Stained" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-44.png", + "paint_name": "★ Huntsman Knife | Case Hardened" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-59.png", + "paint_name": "★ Huntsman Knife | Slaughter" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-72.png", + "paint_name": "★ Huntsman Knife | Safari Mesh" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-77.png", + "paint_name": "★ Huntsman Knife | Boreal Forest" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-143.png", + "paint_name": "★ Huntsman Knife | Urban Masked" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-175.png", + "paint_name": "★ Huntsman Knife | Scorched" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-409.png", + "paint_name": "★ Huntsman Knife | Tiger Tooth" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-411.png", + "paint_name": "★ Huntsman Knife | Damascus Steel" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-413.png", + "paint_name": "★ Huntsman Knife | Marble Fade" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-414.png", + "paint_name": "★ Huntsman Knife | Rust Coat" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-415.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-416.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-417.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-418.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-419.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-420.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-421.png", + "paint_name": "★ Huntsman Knife | Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-568.png", + "paint_name": "★ Huntsman Knife | Gamma Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-569.png", + "paint_name": "★ Huntsman Knife | Gamma Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-570.png", + "paint_name": "★ Huntsman Knife | Gamma Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-571.png", + "paint_name": "★ Huntsman Knife | Gamma Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-572.png", + "paint_name": "★ Huntsman Knife | Gamma Doppler" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-579.png", + "paint_name": "★ Huntsman Knife | Bright Water" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-581.png", + "paint_name": "★ Huntsman Knife | Freehand" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "620", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-620.png", + "paint_name": "★ Huntsman Knife | Ultraviolet" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "1107", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-1107.png", + "paint_name": "★ Huntsman Knife | Lore" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "1112", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-1112.png", + "paint_name": "★ Huntsman Knife | Black Laminate" + }, + { + "weapon_defindex": 509, + "weapon_name": "weapon_knife_tactical", + "paint": "1117", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_tactical-1117.png", + "paint_name": "★ Huntsman Knife | Autotronic" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion.png", + "paint_name": "★ Falchion Knife | Default" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-5.png", + "paint_name": "★ Falchion Knife | Forest DDPAT" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-12.png", + "paint_name": "★ Falchion Knife | Crimson Web" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-38.png", + "paint_name": "★ Falchion Knife | Fade" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-40.png", + "paint_name": "★ Falchion Knife | Night" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-42.png", + "paint_name": "★ Falchion Knife | Blue Steel" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-43.png", + "paint_name": "★ Falchion Knife | Stained" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-44.png", + "paint_name": "★ Falchion Knife | Case Hardened" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-59.png", + "paint_name": "★ Falchion Knife | Slaughter" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-72.png", + "paint_name": "★ Falchion Knife | Safari Mesh" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-77.png", + "paint_name": "★ Falchion Knife | Boreal Forest" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-143.png", + "paint_name": "★ Falchion Knife | Urban Masked" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-175.png", + "paint_name": "★ Falchion Knife | Scorched" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-409.png", + "paint_name": "★ Falchion Knife | Tiger Tooth" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-411.png", + "paint_name": "★ Falchion Knife | Damascus Steel" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-413.png", + "paint_name": "★ Falchion Knife | Marble Fade" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-414.png", + "paint_name": "★ Falchion Knife | Rust Coat" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-415.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-416.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-417.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-418.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-419.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-420.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-421.png", + "paint_name": "★ Falchion Knife | Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-568.png", + "paint_name": "★ Falchion Knife | Gamma Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-569.png", + "paint_name": "★ Falchion Knife | Gamma Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-570.png", + "paint_name": "★ Falchion Knife | Gamma Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-571.png", + "paint_name": "★ Falchion Knife | Gamma Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-572.png", + "paint_name": "★ Falchion Knife | Gamma Doppler" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-579.png", + "paint_name": "★ Falchion Knife | Bright Water" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-581.png", + "paint_name": "★ Falchion Knife | Freehand" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "621", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-621.png", + "paint_name": "★ Falchion Knife | Ultraviolet" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "1106", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-1106.png", + "paint_name": "★ Falchion Knife | Lore" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "1111", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-1111.png", + "paint_name": "★ Falchion Knife | Black Laminate" + }, + { + "weapon_defindex": 512, + "weapon_name": "weapon_knife_falchion", + "paint": "1116", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_falchion-1116.png", + "paint_name": "★ Falchion Knife | Autotronic" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie.png", + "paint_name": "★ Bowie Knife | Default" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-5.png", + "paint_name": "★ Bowie Knife | Forest DDPAT" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-12.png", + "paint_name": "★ Bowie Knife | Crimson Web" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-38.png", + "paint_name": "★ Bowie Knife | Fade" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-40.png", + "paint_name": "★ Bowie Knife | Night" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-42.png", + "paint_name": "★ Bowie Knife | Blue Steel" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-43.png", + "paint_name": "★ Bowie Knife | Stained" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-44.png", + "paint_name": "★ Bowie Knife | Case Hardened" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-59.png", + "paint_name": "★ Bowie Knife | Slaughter" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-72.png", + "paint_name": "★ Bowie Knife | Safari Mesh" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-77.png", + "paint_name": "★ Bowie Knife | Boreal Forest" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-98.png", + "paint_name": "★ Bowie Knife | Ultraviolet" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-143.png", + "paint_name": "★ Bowie Knife | Urban Masked" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-175.png", + "paint_name": "★ Bowie Knife | Scorched" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-409.png", + "paint_name": "★ Bowie Knife | Tiger Tooth" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-411.png", + "paint_name": "★ Bowie Knife | Damascus Steel" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-413.png", + "paint_name": "★ Bowie Knife | Marble Fade" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-414.png", + "paint_name": "★ Bowie Knife | Rust Coat" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-415.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-416.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-417.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-418.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-419.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-420.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-421.png", + "paint_name": "★ Bowie Knife | Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-568.png", + "paint_name": "★ Bowie Knife | Gamma Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-569.png", + "paint_name": "★ Bowie Knife | Gamma Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-570.png", + "paint_name": "★ Bowie Knife | Gamma Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-571.png", + "paint_name": "★ Bowie Knife | Gamma Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-572.png", + "paint_name": "★ Bowie Knife | Gamma Doppler" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-579.png", + "paint_name": "★ Bowie Knife | Bright Water" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-581.png", + "paint_name": "★ Bowie Knife | Freehand" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "1104", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-1104.png", + "paint_name": "★ Bowie Knife | Lore" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "1109", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-1109.png", + "paint_name": "★ Bowie Knife | Black Laminate" + }, + { + "weapon_defindex": 514, + "weapon_name": "weapon_knife_survival_bowie", + "paint": "1114", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_survival_bowie-1114.png", + "paint_name": "★ Bowie Knife | Autotronic" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly.png", + "paint_name": "★ Butterfly Knife | Default" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-5.png", + "paint_name": "★ Butterfly Knife | Forest DDPAT" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-12.png", + "paint_name": "★ Butterfly Knife | Crimson Web" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-38.png", + "paint_name": "★ Butterfly Knife | Fade" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-40.png", + "paint_name": "★ Butterfly Knife | Night" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-42.png", + "paint_name": "★ Butterfly Knife | Blue Steel" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-43.png", + "paint_name": "★ Butterfly Knife | Stained" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-44.png", + "paint_name": "★ Butterfly Knife | Case Hardened" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-59.png", + "paint_name": "★ Butterfly Knife | Slaughter" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-72.png", + "paint_name": "★ Butterfly Knife | Safari Mesh" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-77.png", + "paint_name": "★ Butterfly Knife | Boreal Forest" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-98.png", + "paint_name": "★ Butterfly Knife | Ultraviolet" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-143.png", + "paint_name": "★ Butterfly Knife | Urban Masked" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-175.png", + "paint_name": "★ Butterfly Knife | Scorched" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-409.png", + "paint_name": "★ Butterfly Knife | Tiger Tooth" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-411.png", + "paint_name": "★ Butterfly Knife | Damascus Steel" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-413.png", + "paint_name": "★ Butterfly Knife | Marble Fade" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-414.png", + "paint_name": "★ Butterfly Knife | Rust Coat" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-415.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-418.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-420.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-421.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-568.png", + "paint_name": "★ Butterfly Knife | Gamma Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-569.png", + "paint_name": "★ Butterfly Knife | Gamma Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-570.png", + "paint_name": "★ Butterfly Knife | Gamma Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-571.png", + "paint_name": "★ Butterfly Knife | Gamma Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-572.png", + "paint_name": "★ Butterfly Knife | Gamma Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-579.png", + "paint_name": "★ Butterfly Knife | Bright Water" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-581.png", + "paint_name": "★ Butterfly Knife | Freehand" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "617", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-617.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "618", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-618.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "619", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-619.png", + "paint_name": "★ Butterfly Knife | Doppler" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "1105", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-1105.png", + "paint_name": "★ Butterfly Knife | Lore" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "1110", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-1110.png", + "paint_name": "★ Butterfly Knife | Black Laminate" + }, + { + "weapon_defindex": 515, + "weapon_name": "weapon_knife_butterfly", + "paint": "1115", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_butterfly-1115.png", + "paint_name": "★ Butterfly Knife | Autotronic" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push.png", + "paint_name": "★ Shadow Daggers | Default" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-5.png", + "paint_name": "★ Shadow Daggers | Forest DDPAT" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-12.png", + "paint_name": "★ Shadow Daggers | Crimson Web" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-38.png", + "paint_name": "★ Shadow Daggers | Fade" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "40", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-40.png", + "paint_name": "★ Shadow Daggers | Night" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-42.png", + "paint_name": "★ Shadow Daggers | Blue Steel" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-43.png", + "paint_name": "★ Shadow Daggers | Stained" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-44.png", + "paint_name": "★ Shadow Daggers | Case Hardened" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-59.png", + "paint_name": "★ Shadow Daggers | Slaughter" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-72.png", + "paint_name": "★ Shadow Daggers | Safari Mesh" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-77.png", + "paint_name": "★ Shadow Daggers | Boreal Forest" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-98.png", + "paint_name": "★ Shadow Daggers | Ultraviolet" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-143.png", + "paint_name": "★ Shadow Daggers | Urban Masked" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-175.png", + "paint_name": "★ Shadow Daggers | Scorched" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-409.png", + "paint_name": "★ Shadow Daggers | Tiger Tooth" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "411", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-411.png", + "paint_name": "★ Shadow Daggers | Damascus Steel" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-413.png", + "paint_name": "★ Shadow Daggers | Marble Fade" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-414.png", + "paint_name": "★ Shadow Daggers | Rust Coat" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-415.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-418.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-420.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-421.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "568", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-568.png", + "paint_name": "★ Shadow Daggers | Gamma Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "569", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-569.png", + "paint_name": "★ Shadow Daggers | Gamma Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "570", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-570.png", + "paint_name": "★ Shadow Daggers | Gamma Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "571", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-571.png", + "paint_name": "★ Shadow Daggers | Gamma Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "572", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-572.png", + "paint_name": "★ Shadow Daggers | Gamma Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "579", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-579.png", + "paint_name": "★ Shadow Daggers | Bright Water" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "581", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-581.png", + "paint_name": "★ Shadow Daggers | Freehand" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "617", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-617.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "618", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-618.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "619", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-619.png", + "paint_name": "★ Shadow Daggers | Doppler" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "1108", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-1108.png", + "paint_name": "★ Shadow Daggers | Lore" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "1113", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-1113.png", + "paint_name": "★ Shadow Daggers | Black Laminate" + }, + { + "weapon_defindex": 516, + "weapon_name": "weapon_knife_push", + "paint": "1118", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_push-1118.png", + "paint_name": "★ Shadow Daggers | Autotronic" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord.png", + "paint_name": "★ Paracord Knife | Default" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-5.png", + "paint_name": "★ Paracord Knife | Forest DDPAT" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-12.png", + "paint_name": "★ Paracord Knife | Crimson Web" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-38.png", + "paint_name": "★ Paracord Knife | Fade" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-42.png", + "paint_name": "★ Paracord Knife | Blue Steel" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-43.png", + "paint_name": "★ Paracord Knife | Stained" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-44.png", + "paint_name": "★ Paracord Knife | Case Hardened" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-59.png", + "paint_name": "★ Paracord Knife | Slaughter" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-72.png", + "paint_name": "★ Paracord Knife | Safari Mesh" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-77.png", + "paint_name": "★ Paracord Knife | Boreal Forest" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-143.png", + "paint_name": "★ Paracord Knife | Urban Masked" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-175.png", + "paint_name": "★ Paracord Knife | Scorched" + }, + { + "weapon_defindex": 517, + "weapon_name": "weapon_knife_cord", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_cord-735.png", + "paint_name": "★ Paracord Knife | Night Stripe" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis.png", + "paint_name": "★ Survival Knife | Default" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-5.png", + "paint_name": "★ Survival Knife | Forest DDPAT" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-12.png", + "paint_name": "★ Survival Knife | Crimson Web" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-38.png", + "paint_name": "★ Survival Knife | Fade" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-42.png", + "paint_name": "★ Survival Knife | Blue Steel" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-43.png", + "paint_name": "★ Survival Knife | Stained" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-44.png", + "paint_name": "★ Survival Knife | Case Hardened" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-59.png", + "paint_name": "★ Survival Knife | Slaughter" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-72.png", + "paint_name": "★ Survival Knife | Safari Mesh" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-77.png", + "paint_name": "★ Survival Knife | Boreal Forest" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-143.png", + "paint_name": "★ Survival Knife | Urban Masked" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-175.png", + "paint_name": "★ Survival Knife | Scorched" + }, + { + "weapon_defindex": 518, + "weapon_name": "weapon_knife_canis", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_canis-735.png", + "paint_name": "★ Survival Knife | Night Stripe" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus.png", + "paint_name": "★ Ursus Knife | Default" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-5.png", + "paint_name": "★ Ursus Knife | Forest DDPAT" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-12.png", + "paint_name": "★ Ursus Knife | Crimson Web" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-38.png", + "paint_name": "★ Ursus Knife | Fade" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-42.png", + "paint_name": "★ Ursus Knife | Blue Steel" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-43.png", + "paint_name": "★ Ursus Knife | Stained" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-44.png", + "paint_name": "★ Ursus Knife | Case Hardened" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-59.png", + "paint_name": "★ Ursus Knife | Slaughter" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-72.png", + "paint_name": "★ Ursus Knife | Safari Mesh" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-77.png", + "paint_name": "★ Ursus Knife | Boreal Forest" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-98.png", + "paint_name": "★ Ursus Knife | Ultraviolet" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-143.png", + "paint_name": "★ Ursus Knife | Urban Masked" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-175.png", + "paint_name": "★ Ursus Knife | Scorched" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-409.png", + "paint_name": "★ Ursus Knife | Tiger Tooth" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-413.png", + "paint_name": "★ Ursus Knife | Marble Fade" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-414.png", + "paint_name": "★ Ursus Knife | Rust Coat" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-415.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-416.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-417.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-418.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-419.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-420.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-421.png", + "paint_name": "★ Ursus Knife | Doppler" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-735.png", + "paint_name": "★ Ursus Knife | Night Stripe" + }, + { + "weapon_defindex": 519, + "weapon_name": "weapon_knife_ursus", + "paint": "857", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_ursus-857.png", + "paint_name": "★ Ursus Knife | Damascus Steel" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife.png", + "paint_name": "★ Navaja Knife | Default" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-5.png", + "paint_name": "★ Navaja Knife | Forest DDPAT" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-12.png", + "paint_name": "★ Navaja Knife | Crimson Web" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-38.png", + "paint_name": "★ Navaja Knife | Fade" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-42.png", + "paint_name": "★ Navaja Knife | Blue Steel" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-43.png", + "paint_name": "★ Navaja Knife | Stained" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-44.png", + "paint_name": "★ Navaja Knife | Case Hardened" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-59.png", + "paint_name": "★ Navaja Knife | Slaughter" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-72.png", + "paint_name": "★ Navaja Knife | Safari Mesh" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-77.png", + "paint_name": "★ Navaja Knife | Boreal Forest" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-98.png", + "paint_name": "★ Navaja Knife | Ultraviolet" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-143.png", + "paint_name": "★ Navaja Knife | Urban Masked" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-175.png", + "paint_name": "★ Navaja Knife | Scorched" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-409.png", + "paint_name": "★ Navaja Knife | Tiger Tooth" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-413.png", + "paint_name": "★ Navaja Knife | Marble Fade" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-414.png", + "paint_name": "★ Navaja Knife | Rust Coat" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-415.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-416.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-417.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-418.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-419.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-420.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-421.png", + "paint_name": "★ Navaja Knife | Doppler" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-735.png", + "paint_name": "★ Navaja Knife | Night Stripe" + }, + { + "weapon_defindex": 520, + "weapon_name": "weapon_knife_gypsy_jackknife", + "paint": "857", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_gypsy_jackknife-857.png", + "paint_name": "★ Navaja Knife | Damascus Steel" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor.png", + "paint_name": "★ Nomad Knife | Default" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-5.png", + "paint_name": "★ Nomad Knife | Forest DDPAT" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-12.png", + "paint_name": "★ Nomad Knife | Crimson Web" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-38.png", + "paint_name": "★ Nomad Knife | Fade" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-42.png", + "paint_name": "★ Nomad Knife | Blue Steel" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-43.png", + "paint_name": "★ Nomad Knife | Stained" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-44.png", + "paint_name": "★ Nomad Knife | Case Hardened" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-59.png", + "paint_name": "★ Nomad Knife | Slaughter" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-72.png", + "paint_name": "★ Nomad Knife | Safari Mesh" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-77.png", + "paint_name": "★ Nomad Knife | Boreal Forest" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-143.png", + "paint_name": "★ Nomad Knife | Urban Masked" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-175.png", + "paint_name": "★ Nomad Knife | Scorched" + }, + { + "weapon_defindex": 521, + "weapon_name": "weapon_knife_outdoor", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_outdoor-735.png", + "paint_name": "★ Nomad Knife | Night Stripe" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto.png", + "paint_name": "★ Stiletto Knife | Default" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-5.png", + "paint_name": "★ Stiletto Knife | Forest DDPAT" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-12.png", + "paint_name": "★ Stiletto Knife | Crimson Web" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-38.png", + "paint_name": "★ Stiletto Knife | Fade" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-42.png", + "paint_name": "★ Stiletto Knife | Blue Steel" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-43.png", + "paint_name": "★ Stiletto Knife | Stained" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-44.png", + "paint_name": "★ Stiletto Knife | Case Hardened" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-59.png", + "paint_name": "★ Stiletto Knife | Slaughter" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-72.png", + "paint_name": "★ Stiletto Knife | Safari Mesh" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-77.png", + "paint_name": "★ Stiletto Knife | Boreal Forest" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-98.png", + "paint_name": "★ Stiletto Knife | Ultraviolet" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-143.png", + "paint_name": "★ Stiletto Knife | Urban Masked" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-175.png", + "paint_name": "★ Stiletto Knife | Scorched" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-409.png", + "paint_name": "★ Stiletto Knife | Tiger Tooth" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "413", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-413.png", + "paint_name": "★ Stiletto Knife | Marble Fade" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-414.png", + "paint_name": "★ Stiletto Knife | Rust Coat" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-415.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-416.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-417.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "418", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-418.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "419", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-419.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "420", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-420.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "421", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-421.png", + "paint_name": "★ Stiletto Knife | Doppler" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-735.png", + "paint_name": "★ Stiletto Knife | Night Stripe" + }, + { + "weapon_defindex": 522, + "weapon_name": "weapon_knife_stiletto", + "paint": "857", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_stiletto-857.png", + "paint_name": "★ Stiletto Knife | Damascus Steel" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker.png", + "paint_name": "★ Talon Knife | Default" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-5.png", + "paint_name": "★ Talon Knife | Forest DDPAT" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-12.png", + "paint_name": "★ Talon Knife | Crimson Web" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-38.png", + "paint_name": "★ Talon Knife | Fade" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-42.png", + "paint_name": "★ Talon Knife | Blue Steel" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-43.png", + "paint_name": "★ Talon Knife | Stained" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-44.png", + "paint_name": "★ Talon Knife | Case Hardened" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-59.png", + "paint_name": "★ Talon Knife | Slaughter" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-72.png", + "paint_name": "★ Talon Knife | Safari Mesh" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-77.png", + "paint_name": "★ Talon Knife | Boreal Forest" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "98", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-98.png", + "paint_name": "★ Talon Knife | Ultraviolet" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-143.png", + "paint_name": "★ Talon Knife | Urban Masked" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-175.png", + "paint_name": "★ Talon Knife | Scorched" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "409", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-409.png", + "paint_name": "★ Talon Knife | Tiger Tooth" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "414", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-414.png", + "paint_name": "★ Talon Knife | Rust Coat" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "415", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-415.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "416", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-416.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "417", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-417.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-735.png", + "paint_name": "★ Talon Knife | Night Stripe" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "852", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-852.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "853", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-853.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "854", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-854.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "855", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-855.png", + "paint_name": "★ Talon Knife | Doppler" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "856", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-856.png", + "paint_name": "★ Talon Knife | Marble Fade" + }, + { + "weapon_defindex": 523, + "weapon_name": "weapon_knife_widowmaker", + "paint": "858", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_widowmaker-858.png", + "paint_name": "★ Talon Knife | Damascus Steel" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton.png", + "paint_name": "★ Skeleton Knife | Default" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-5.png", + "paint_name": "★ Skeleton Knife | Forest DDPAT" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-12.png", + "paint_name": "★ Skeleton Knife | Crimson Web" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-38.png", + "paint_name": "★ Skeleton Knife | Fade" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-42.png", + "paint_name": "★ Skeleton Knife | Blue Steel" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-43.png", + "paint_name": "★ Skeleton Knife | Stained" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-44.png", + "paint_name": "★ Skeleton Knife | Case Hardened" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-59.png", + "paint_name": "★ Skeleton Knife | Slaughter" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-72.png", + "paint_name": "★ Skeleton Knife | Safari Mesh" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-77.png", + "paint_name": "★ Skeleton Knife | Boreal Forest" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-143.png", + "paint_name": "★ Skeleton Knife | Urban Masked" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-175.png", + "paint_name": "★ Skeleton Knife | Scorched" + }, + { + "weapon_defindex": 525, + "weapon_name": "weapon_knife_skeleton", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_skeleton-735.png", + "paint_name": "★ Skeleton Knife | Night Stripe" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": 0, + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri.png", + "paint_name": "★ Kukri Knife | Default" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "5", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-5.png", + "paint_name": "★ Kukri Knife | Forest DDPAT" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "12", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-12.png", + "paint_name": "★ Kukri Knife | Crimson Web" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "38", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-38.png", + "paint_name": "★ Kukri Knife | Fade" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "42", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-42.png", + "paint_name": "★ Kukri Knife | Blue Steel" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "43", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-43.png", + "paint_name": "★ Kukri Knife | Stained" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "44", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-44.png", + "paint_name": "★ Kukri Knife | Case Hardened" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "59", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-59.png", + "paint_name": "★ Kukri Knife | Slaughter" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "72", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-72.png", + "paint_name": "★ Kukri Knife | Safari Mesh" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "77", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-77.png", + "paint_name": "★ Kukri Knife | Boreal Forest" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "143", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-143.png", + "paint_name": "★ Kukri Knife | Urban Masked" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "175", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-175.png", + "paint_name": "★ Kukri Knife | Scorched" + }, + { + "weapon_defindex": 526, + "weapon_name": "weapon_knife_kukri", + "paint": "735", + "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife_kukri-735.png", + "paint_name": "★ Kukri Knife | Night Stripe" + } +] diff --git a/resources/layouts/collapsible-menu/loader.js b/resources/layouts/collapsible-menu/loader.js index 74c37d1..d643e7a 100644 --- a/resources/layouts/collapsible-menu/loader.js +++ b/resources/layouts/collapsible-menu/loader.js @@ -12,7 +12,7 @@ window.addEventListener("load", function(){ settings: { layout: { name: layoutName, - darkMode: true, + darkMode: themeMode, } }, reset: false diff --git a/resources/layouts/horizontal-dark-menu/loader.js b/resources/layouts/horizontal-dark-menu/loader.js index 5a79759..33c2c8d 100644 --- a/resources/layouts/horizontal-dark-menu/loader.js +++ b/resources/layouts/horizontal-dark-menu/loader.js @@ -11,7 +11,7 @@ window.addEventListener("load", function(){ settings: { layout: { name: layoutName, - darkMode: true, + darkMode: themeMode, } }, reset: false diff --git a/resources/layouts/horizontal-light-menu/loader.js b/resources/layouts/horizontal-light-menu/loader.js index 7aa7d91..829c6ce 100644 --- a/resources/layouts/horizontal-light-menu/loader.js +++ b/resources/layouts/horizontal-light-menu/loader.js @@ -11,7 +11,7 @@ window.addEventListener("load", function(){ settings: { layout: { name: layoutName, - darkMode: false, + darkMode: themeMode, } }, reset: false diff --git a/resources/layouts/modern-dark-menu/app.js b/resources/layouts/modern-dark-menu/app.js index 8d9df0b..6a3366e 100644 --- a/resources/layouts/modern-dark-menu/app.js +++ b/resources/layouts/modern-dark-menu/app.js @@ -4,7 +4,7 @@ var App = function() { lg: 992, md: 991, sm: 576 - }; + };offsetTop var Dom = { main: document.querySelector('html, body'), id: { diff --git a/resources/layouts/modern-light-menu/loader.js b/resources/layouts/modern-light-menu/loader.js index 057de8e..829c498 100644 --- a/resources/layouts/modern-light-menu/loader.js +++ b/resources/layouts/modern-light-menu/loader.js @@ -1,5 +1,4 @@ window.addEventListener("load", function(){ - // Remove Loader var load_screen = document.getElementById("load_screen"); @@ -12,7 +11,7 @@ window.addEventListener("load", function(){ settings: { layout: { name: layoutName, - darkMode: false, + darkMode: themeMode, } }, reset: false diff --git a/resources/scss/common/common.scss b/resources/scss/common/common.scss new file mode 100644 index 0000000..1881f0d --- /dev/null +++ b/resources/scss/common/common.scss @@ -0,0 +1,160 @@ +.weapon-paints .card.style-6 { + overflow: hidden; + transition: trantsform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; + position: relative; +} +.weapon-paints .card.style-6:hover .card-img-top { + transform: scale(1.1); +} +.weapon-paints .card.style-6 .card-img-top { + transition: transform 0.2s ease-in-out; +} +.weapon-paints .card.style-6::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: var(--glow-color, transparent) !important; + z-index: -1; + filter: blur(20px); + transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out; + opacity: 0; +} +.weapon-paints .card.style-6.glow::before { + opacity: 1; +} +body.layout-dark a , body.layout-dark .card{ + background-color: transparent !important; +} +.weapon-paints .modal-body { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 80vh; /* Adjust height as needed */ + overflow: hidden; + text-align: center; +} + +.weapon-paints .modal-body img { + max-width: 100%; + max-height: 70vh; /* Ensure the image doesn't overflow the modal */ + transition: transform 0.2s ease-in-out; +} +.weapon-paints .modal-body img.zoomed { + transform: scale(1.5); /* Adjust zoom scale as needed */ +} +.weapon-paints .modal-body h5 { + margin-top: 1rem; +} +.weapon-paints .nav-tabs { + justify-content: center; + background: linear-gradient(45deg, #490593, #358218f2); + border: none; + border-radius: 0.5rem; + padding: 0.5rem; +} +.weapon-paints .nav-item { + margin: 0 1rem; +} +.weapon-paints .nav-link { + background: transparent; + border: none; + color: white; + font-size: 2rem; + transition: transform 0.2s ease-in-out; +} +.weapon-paints .nav-link img { + width: 89px; + height: 66px; +} +.weapon-paints .nav-link.active { + transform: scale(1.2); +} +.weapon-paints .nav-link:hover { + transform: scale(1.1); +} +.weapon-paints .weapon-tab-icon { + display: block; + margin: auto; +} +.weapon-paints .modal-body .row { + display: flex; + flex-wrap: wrap; + justify-content: center; + max-height: 400px; /* Adjust as needed */ + overflow-y: auto; +} +.weapon-paints .weapon-select-button, .weapon-paints .glove-select-button { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + border: none; + background: linear-gradient(45deg, #bc2a2a, rgb(130 90 24 / 95%)) !important; + cursor: pointer; + transition: transform 0.3s ease; + min-height: 168px; +} +.weapon-paints .weapon-select-button img, .weapon-paints .glove-select-button img { + width: 100%; + height: auto; + margin-bottom: 0.5rem; +} +.weapon-paints .weapon-select-button:hover, .weapon-paints .glove-select-button:hover { + transform: scale(1.1); +} +.weapon-paints .weapon-select-button p, .weapon-paints .glove-select-button p { + margin: 0; + text-align: center; +} +.weapon-paints .modal-body { + height: auto !important; +} +.weapon-paints .modal-header, .weapon-paints .modal-footer { + border: none !important; +} +.weapon-paints .fa-chevron-down { + font-size: 17px; + color: aliceblue; +} +.weapon-paints .lazy { + opacity: 0; + transition: opacity 0.3s; +} +.weapon-paints .lazy.loaded { + opacity: 1; +} +.weapon-paints .row > div { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.loader-skins { + display: inline-block; + width: 100%; + height: 100%; + background: linear-gradient(100deg, rgb(28 10 10 / 0%) 0%, rgb(151 219 152 / 80%) 50%, rgb(214 118 118 / 0%) 100%); + background-size: 200% 100%; + animation: skins-loading 1.5s infinite; +} + +@keyframes skins-loading { + 0% { + background-position: 200% 0; + } + 100% { + background-position: -200% 0; + } +} + +.weapon-paints .card.style-6 .loader-skins { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 1; +} diff --git a/resources/scss/dark/assets/main.scss b/resources/scss/dark/assets/main.scss index 8c5d6b1..57168a5 100644 --- a/resources/scss/dark/assets/main.scss +++ b/resources/scss/dark/assets/main.scss @@ -4883,3 +4883,6 @@ body.layout-dark .table tbody tr td { #select2-language-dropdown-container img, #select2-language-dropdown-results img { height: 16px; } +#sidebar ul.menu-categories li.menu.active>.dropdown-toggle { + background-color: #4361ee !important; +} diff --git a/resources/views/components/base-layout.blade.php b/resources/views/components/base-layout.blade.php index ec776e6..e630d70 100644 --- a/resources/views/components/base-layout.blade.php +++ b/resources/views/components/base-layout.blade.php @@ -50,6 +50,8 @@ {{$headerFiles}} + + @vite(['resources/scss/light/plugins/notification/snackbar/custom-snackbar.scss']) {{$footerFiles}} + + diff --git a/resources/views/components/menu/vertical-menu.blade.php b/resources/views/components/menu/vertical-menu.blade.php index e85d151..8f14166 100644 --- a/resources/views/components/menu/vertical-menu.blade.php +++ b/resources/views/components/menu/vertical-menu.blade.php @@ -86,9 +86,22 @@ + + @if(env('SKINS') == 'Enabled') + + @endif + @if(env('RANKS') == 'Enabled')