Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30c0ae5665 | ||
|
|
953c3847b1 | ||
|
|
b026ce1e7d | ||
|
|
634d0e4c1d | ||
|
|
f345a46090 | ||
|
|
bde0666313 | ||
|
|
95d53f4216 | ||
|
|
d9280f6608 | ||
|
|
c1cd229ea8 | ||
|
|
6870dd0e57 | ||
|
|
03b9e686b5 | ||
|
|
1abb2d6005 | ||
|
|
1b706e5c55 | ||
|
|
402beb90b5 |
221
Patches/MemoryLinux.cs
Normal file
@@ -0,0 +1,221 @@
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace WeaponPaints;
|
||||
|
||||
public static class MemoryLinux
|
||||
{
|
||||
// Based on https://github.com/Source2ZE/CS2Fixes/blob/main/src/utils/plat_unix.cpp
|
||||
static int ParseProt(string s)
|
||||
{
|
||||
int prot = 0;
|
||||
|
||||
foreach (var c in s)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
case '-':
|
||||
break;
|
||||
case 'r':
|
||||
prot |= NativeMethods.PROT_READ;
|
||||
break;
|
||||
case 'w':
|
||||
prot |= NativeMethods.PROT_WRITE;
|
||||
break;
|
||||
case 'x':
|
||||
prot |= NativeMethods.PROT_EXEC;
|
||||
break;
|
||||
case 's':
|
||||
break;
|
||||
case 'p':
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return prot;
|
||||
}
|
||||
|
||||
static int GetProt(IntPtr pAddr, uint nSize)
|
||||
{
|
||||
using (var f = File.OpenRead("/proc/self/maps"))
|
||||
using (var reader = new StreamReader(f))
|
||||
{
|
||||
while (!reader.EndOfStream)
|
||||
{
|
||||
var line = reader.ReadLine();
|
||||
if (line == null)
|
||||
continue;
|
||||
|
||||
var parts = line.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
if (parts.Length < 5)
|
||||
continue;
|
||||
|
||||
var range = parts[0];
|
||||
var prot = parts[1];
|
||||
|
||||
var startEnd = range.Split('-');
|
||||
if (startEnd.Length != 2)
|
||||
continue;
|
||||
|
||||
var start = Convert.ToUInt64(startEnd[0], 16);
|
||||
var end = Convert.ToUInt64(startEnd[1], 16);
|
||||
|
||||
if (start < (ulong)pAddr && end > (ulong)pAddr + nSize)
|
||||
{
|
||||
return ParseProt(prot);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static void PatchBytesAtAddress(IntPtr pPatchAddress, byte[] pPatch, int iPatchSize)
|
||||
{
|
||||
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return;
|
||||
|
||||
var oldProt = GetProt(pPatchAddress, (uint)iPatchSize);
|
||||
|
||||
var pageSize = (ulong)NativeMethods.sysconf(NativeMethods._SC_PAGESIZE);
|
||||
var alignAddr = (IntPtr)((long)pPatchAddress & ~(long)(pageSize - 1));
|
||||
|
||||
var end = (IntPtr)((long)pPatchAddress + iPatchSize);
|
||||
var alignSize = (ulong)((long)end - (long)alignAddr);
|
||||
|
||||
var result = NativeMethods.mprotect(alignAddr, alignSize, NativeMethods.PROT_READ | NativeMethods.PROT_WRITE);
|
||||
|
||||
Marshal.Copy(pPatch, 0, pPatchAddress, iPatchSize);
|
||||
|
||||
result = NativeMethods.mprotect(alignAddr, alignSize, oldProt);
|
||||
}
|
||||
|
||||
private static byte[]? ReadProcessMemory(int pid, long address, int size)
|
||||
{
|
||||
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return null;
|
||||
|
||||
byte[] buffer = new byte[size];
|
||||
|
||||
NativeMethods.Iovec local = new NativeMethods.Iovec
|
||||
{
|
||||
iov_base = Marshal.UnsafeAddrOfPinnedArrayElement(buffer, 0),
|
||||
iov_len = new IntPtr(size)
|
||||
};
|
||||
|
||||
NativeMethods.Iovec remote = new NativeMethods.Iovec
|
||||
{
|
||||
iov_base = new IntPtr(address),
|
||||
iov_len = new IntPtr(size)
|
||||
};
|
||||
|
||||
long bytesRead = NativeMethods.process_vm_readv(pid, new NativeMethods.Iovec[] { local }, 1, new NativeMethods.Iovec[] { remote }, 1, 0);
|
||||
if (bytesRead == -1)
|
||||
{
|
||||
throw new Exception($"process_vm_readv failed with error {Marshal.GetLastPInvokeError()}");
|
||||
}
|
||||
|
||||
return buffer;
|
||||
}
|
||||
|
||||
public static byte[]? ReadMemory(IntPtr address, int size)
|
||||
{
|
||||
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return null;
|
||||
|
||||
return ReadProcessMemory(Process.GetCurrentProcess().Id, (long)address, size);
|
||||
}
|
||||
|
||||
#pragma warning disable CS0649 // Field is never assigned to, and will always have its default value
|
||||
#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
|
||||
static class NativeMethods
|
||||
{
|
||||
public const int O_RDONLY = 0;
|
||||
public const int PROT_READ = 0x1;
|
||||
public const int PROT_WRITE = 0x2;
|
||||
public const int PROT_EXEC = 0x4;
|
||||
public const int MAP_PRIVATE = 0x2;
|
||||
public const int PT_LOAD = 1;
|
||||
public const int PF_X = 0x1;
|
||||
public const int _SC_PAGESIZE = 30;
|
||||
public const int RTLD_DI_LINKMAP = 2;
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int dlinfo(IntPtr handle, int request, out link_map lmap);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int dlclose(IntPtr handle);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int open(string pathname, int flags);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int fstat(int fd, out stat buf);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern IntPtr mmap(IntPtr addr, ulong length, int prot, int flags, int fd, ulong offset);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int munmap(IntPtr addr, ulong length);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern int mprotect(IntPtr addr, ulong len, int prot);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern long sysconf(int name);
|
||||
|
||||
[DllImport("libc")]
|
||||
public static extern long process_vm_readv(int pid, Iovec[] local_iov, ulong liovcnt, Iovec[] remote_iov, ulong riovcnt, ulong flags);
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Iovec
|
||||
{
|
||||
public IntPtr iov_base;
|
||||
public IntPtr iov_len;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct link_map
|
||||
{
|
||||
public IntPtr l_addr;
|
||||
public IntPtr l_name;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct ElfW
|
||||
{
|
||||
public struct Ehdr
|
||||
{
|
||||
public byte e_shnum;
|
||||
public uint e_shoff;
|
||||
public ushort e_phnum;
|
||||
public uint e_phoff;
|
||||
}
|
||||
|
||||
public struct Phdr
|
||||
{
|
||||
public int p_type;
|
||||
public int p_flags;
|
||||
|
||||
public ulong p_vaddr;
|
||||
public ulong p_filesz;
|
||||
}
|
||||
|
||||
public struct Shdr
|
||||
{
|
||||
public uint sh_name;
|
||||
public uint sh_offset;
|
||||
public uint sh_size;
|
||||
public ulong sh_addr;
|
||||
}
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
|
||||
public struct stat
|
||||
{
|
||||
public ulong st_size;
|
||||
}
|
||||
}
|
||||
#pragma warning restore CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
|
||||
#pragma warning restore CS0649 // Field is never assigned to, and will always have its default value
|
||||
}
|
||||
34
Patches/MemoryWindows.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace WeaponPaints;
|
||||
|
||||
public static class MemoryWindows
|
||||
{
|
||||
[DllImport("kernel32.dll", SetLastError = true)]
|
||||
static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, uint nSize, out IntPtr lpNumberOfBytesWritten);
|
||||
|
||||
public static void PatchBytesAtAddress(IntPtr pPatchAddress, byte[] pPatch, int iPatchSize)
|
||||
{
|
||||
if(!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) return;
|
||||
|
||||
IntPtr bytesWritten;
|
||||
WriteProcessMemory(Process.GetCurrentProcess().Handle, pPatchAddress, pPatch, (uint)iPatchSize, out bytesWritten);
|
||||
}
|
||||
|
||||
[DllImport("kernel32.dll", SetLastError = true)]
|
||||
private static extern IntPtr OpenProcess(int processAccess, bool bInheritHandle, int processId);
|
||||
|
||||
[DllImport("kernel32.dll", SetLastError = true)]
|
||||
private static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [Out] byte[] lpBuffer, int dwSize, out int lpNumberOfBytesRead);
|
||||
|
||||
public static byte[]? ReadMemory(IntPtr address, int size)
|
||||
{
|
||||
if(!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) return null;
|
||||
|
||||
byte[] buffer = new byte[size];
|
||||
int bytesRead;
|
||||
ReadProcessMemory(Process.GetCurrentProcess().Handle, address, buffer, size, out bytesRead);
|
||||
return buffer;
|
||||
}
|
||||
}
|
||||
104
Patches/Patch.cs
Normal file
@@ -0,0 +1,104 @@
|
||||
using System.Runtime.InteropServices;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Modules.Memory;
|
||||
|
||||
namespace WeaponPaints;
|
||||
|
||||
// Thanks cssharp-fixes
|
||||
public static class Patch
|
||||
{
|
||||
private static IntPtr GetAddress(string modulePath, string signature)
|
||||
{
|
||||
// Returns address if found, otherwise a C++ nullptr which is a IntPtr.Zero in C#
|
||||
var address = NativeAPI.FindSignature(modulePath, signature);
|
||||
|
||||
return address;
|
||||
}
|
||||
|
||||
public static void PerformPatch(string signature, string patch)
|
||||
{
|
||||
IntPtr address = GetAddress(Addresses.ServerPath, signature);
|
||||
if(address == IntPtr.Zero)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
WriteBytesToAddress(address, HexToByte(patch));
|
||||
}
|
||||
|
||||
private static void WriteBytesToAddress(IntPtr address, List<byte> bytes)
|
||||
{
|
||||
int patchSize = bytes.Count;
|
||||
if(patchSize == 0) throw new ArgumentException("Patch bytes list cannot be empty.");
|
||||
|
||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
||||
{
|
||||
MemoryLinux.PatchBytesAtAddress(address, bytes.ToArray(), patchSize);
|
||||
}
|
||||
else
|
||||
{
|
||||
MemoryWindows.PatchBytesAtAddress(address, bytes.ToArray(), patchSize);
|
||||
}
|
||||
}
|
||||
|
||||
private static List<byte> HexToByte(string src)
|
||||
{
|
||||
if (string.IsNullOrEmpty(src))
|
||||
{
|
||||
return new List<byte>();
|
||||
}
|
||||
|
||||
byte HexCharToByte(char c)
|
||||
{
|
||||
if (c is >= '0' and <= '9') return (byte)(c - '0');
|
||||
if (c is >= 'A' and <= 'F') return (byte)(c - 'A' + 10);
|
||||
if (c is >= 'a' and <= 'f') return (byte)(c - 'a' + 10);
|
||||
return 0xFF; // Invalid hex character
|
||||
}
|
||||
|
||||
List<byte> result = new List<byte>();
|
||||
bool isCodeStyle = src[0] == '\\';
|
||||
string pattern = isCodeStyle ? "\\x" : " ";
|
||||
string wildcard = isCodeStyle ? "2A" : "?";
|
||||
int pos = 0;
|
||||
|
||||
while (pos < src.Length)
|
||||
{
|
||||
int found = src.IndexOf(pattern, pos);
|
||||
if (found == -1)
|
||||
{
|
||||
found = src.Length;
|
||||
}
|
||||
|
||||
string str = src.Substring(pos, found - pos);
|
||||
pos = found + pattern.Length;
|
||||
|
||||
if (string.IsNullOrEmpty(str)) continue;
|
||||
|
||||
string byteStr = str;
|
||||
|
||||
if (byteStr.Substring(0, wildcard.Length) == wildcard)
|
||||
{
|
||||
result.Add(0xFF); // Representing wildcard as 0xFF
|
||||
continue;
|
||||
}
|
||||
|
||||
if (byteStr.Length < 2)
|
||||
{
|
||||
return new List<byte>(); // Invalid byte length
|
||||
}
|
||||
|
||||
byte high = HexCharToByte(byteStr[0]);
|
||||
byte low = HexCharToByte(byteStr[1]);
|
||||
|
||||
if (high == 0xFF || low == 0xFF)
|
||||
{
|
||||
return new List<byte>(); // Invalid hex character
|
||||
}
|
||||
|
||||
result.Add((byte)((high << 4) | low));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
@@ -93,10 +93,11 @@ public partial class WeaponPaints
|
||||
|
||||
private static readonly MemoryFunctionVoid<nint, string, float> CAttributeListSetOrAddAttributeValueByName = new(GameData.GetSignature("CAttributeList_SetOrAddAttributeValueByName"));
|
||||
|
||||
private static readonly MemoryFunctionWithReturn<nint, string, int, int> SetBodygroupFunc = new(
|
||||
GameData.GetSignature("CBaseModelEntity_SetBodygroup"));
|
||||
//we dont need anymore because we use AcceptInput
|
||||
//private static readonly MemoryFunctionWithReturn<nint, string, int, int> SetBodygroupFunc = new(
|
||||
// GameData.GetSignature("CBaseModelEntity_SetBodygroup"));
|
||||
|
||||
private static readonly Func<nint, string, int, int> SetBodygroup = SetBodygroupFunc.Invoke;
|
||||
//private static readonly Func<nint, string, int, int> SetBodygroup = SetBodygroupFunc.Invoke;
|
||||
|
||||
private static Dictionary<int, string> WeaponDefindex { get; } = new()
|
||||
{
|
||||
|
||||
@@ -285,7 +285,6 @@ namespace WeaponPaints
|
||||
if (!weapon.Value.OwnerEntity.IsValid) continue;
|
||||
if (gun.Entity == null) continue;
|
||||
if (!gun.IsValid) continue;
|
||||
if (!gun.VisibleinPVS) continue;
|
||||
|
||||
try
|
||||
{
|
||||
@@ -406,7 +405,7 @@ namespace WeaponPaints
|
||||
|
||||
item.Initialized = true;
|
||||
|
||||
SetBodygroup(pawn.Handle, "default_gloves", 1);
|
||||
SetBodygroup(pawn, "default_gloves", 1);
|
||||
}
|
||||
catch (Exception) { }
|
||||
}, TimerFlags.STOP_ON_MAPCHANGE);
|
||||
@@ -430,13 +429,15 @@ namespace WeaponPaints
|
||||
return int.TryParse(randomWeapon["paint"]?.ToString(), out var paintValue) ? paintValue : 0;
|
||||
}
|
||||
|
||||
private static void SubclassChange(CBasePlayerWeapon weapon, ushort itemD)
|
||||
//xstage idea on css discord
|
||||
public static void SubclassChange(CBasePlayerWeapon weapon, ushort itemD)
|
||||
{
|
||||
var subclassChangeFunc = VirtualFunction.Create<nint, string, int>(
|
||||
GameData.GetSignature("ChangeSubclass")
|
||||
);
|
||||
weapon.AcceptInput("ChangeSubclass", value: itemD.ToString());
|
||||
}
|
||||
|
||||
subclassChangeFunc(weapon.Handle, itemD.ToString());
|
||||
public static void SetBodygroup(CCSPlayerPawn pawn, string group, int value)
|
||||
{
|
||||
pawn.AcceptInput("SetBodygroup", value:$"{group},{value}");
|
||||
}
|
||||
|
||||
private static void UpdateWeaponMeshGroupMask(CBaseEntity weapon, bool isLegacy = false)
|
||||
@@ -454,13 +455,6 @@ namespace WeaponPaints
|
||||
private static void UpdatePlayerWeaponMeshGroupMask(CCSPlayerController player, CBasePlayerWeapon weapon, bool isLegacy)
|
||||
{
|
||||
UpdateWeaponMeshGroupMask(weapon, isLegacy);
|
||||
|
||||
var viewModel = GetPlayerViewModel(player);
|
||||
if (viewModel == null || viewModel.Weapon.Value == null ||
|
||||
viewModel.Weapon.Value.Index != weapon.Index) return;
|
||||
|
||||
UpdateWeaponMeshGroupMask(viewModel, isLegacy);
|
||||
Utilities.SetStateChanged(viewModel, "CBaseEntity", "m_CBodyComponent");
|
||||
}
|
||||
|
||||
private static void GivePlayerAgent(CCSPlayerController player)
|
||||
@@ -558,16 +552,6 @@ namespace WeaponPaints
|
||||
return !Utility.IsPlayerValid(player) ? null : player;
|
||||
}
|
||||
|
||||
private static unsafe CBaseViewModel? GetPlayerViewModel(CCSPlayerController player)
|
||||
{
|
||||
if (player.PlayerPawn.Value == null || player.PlayerPawn.Value.ViewModelServices == null) return null;
|
||||
CCSPlayer_ViewModelServices viewModelServices = new(player.PlayerPawn.Value.ViewModelServices!.Handle);
|
||||
var ptr = viewModelServices.Handle + Schema.GetSchemaOffset("CCSPlayer_ViewModelServices", "m_hViewModel");
|
||||
var references = MemoryMarshal.CreateSpan(ref ptr, 3);
|
||||
var viewModel = (CHandle<CBaseViewModel>)Activator.CreateInstance(typeof(CHandle<CBaseViewModel>), references[0])!;
|
||||
return viewModel.Value == null ? null : viewModel.Value;
|
||||
}
|
||||
|
||||
private static bool HasChangedKnife(CCSPlayerController player, out string? knifeValue)
|
||||
{
|
||||
knifeValue = null;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using System.Runtime.InteropServices;
|
||||
using CounterStrikeSharp.API;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Attributes;
|
||||
@@ -16,10 +17,16 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
public override string ModuleAuthor => "Nereziel & daffyy";
|
||||
public override string ModuleDescription => "Skin, gloves, agents and knife selector, standalone and web-based";
|
||||
public override string ModuleName => "WeaponPaints";
|
||||
public override string ModuleVersion => "3.1c";
|
||||
public override string ModuleVersion => "3.1d";
|
||||
|
||||
public override void Load(bool hotReload)
|
||||
{
|
||||
// Hardcoded hotfix needs to be changed later
|
||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
||||
Patch.PerformPatch("0F 85 ? ? ? ? 31 C0 B9 ? ? ? ? BA ? ? ? ? 66 0F EF C0 31 F6 31 FF 48 C7 45 ? ? ? ? ? 48 C7 45 ? ? ? ? ? 48 C7 45 ? ? ? ? ? 48 C7 45 ? ? ? ? ? 0F 29 45 ? 48 C7 45 ? ? ? ? ? C7 45 ? ? ? ? ? 66 89 45 ? E8 ? ? ? ? 41 89 C5 85 C0 0F 8E", "90 90 90 90 90 90");
|
||||
else
|
||||
Patch.PerformPatch("74 ? 48 8D 0D ? ? ? ? FF 15 ? ? ? ? EB ? BA", "EB");
|
||||
|
||||
Instance = this;
|
||||
|
||||
if (hotReload)
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.281" />
|
||||
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.331" />
|
||||
<PackageReference Include="Dapper" Version="2.1.35" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.4.0-beta.1" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
|
||||
@@ -1,23 +1,9 @@
|
||||
{
|
||||
"ChangeSubclass": {
|
||||
"signatures": {
|
||||
"library": "server",
|
||||
"windows": "48 89 6C 24 ? 56 48 83 EC ? 48 8B EA 48 8B F1 E8 ? ? ? ? 84 C0 0F 84",
|
||||
"linux": "55 48 89 E5 41 57 41 56 41 55 49 89 F5 41 54 49 89 FC 53 48 81 EC A8 00 00 00"
|
||||
}
|
||||
},
|
||||
"CAttributeList_SetOrAddAttributeValueByName": {
|
||||
"signatures": {
|
||||
"library": "server",
|
||||
"windows": "40 53 41 56 41 57 48 81 EC 90 00 00 00 0F 29 74 24 70",
|
||||
"linux": "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 49 89 F4 53 48 83 EC 78"
|
||||
}
|
||||
},
|
||||
"CBaseModelEntity_SetBodygroup": {
|
||||
"signatures": {
|
||||
"library": "server",
|
||||
"windows": "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 41 8B F8 48 8B F2 48 8B D9 E8 ? ? ? ?",
|
||||
"linux": "55 48 89 E5 41 56 49 89 F6 41 55 41 89 D5 41 54 49 89 FC 48 83 EC 08"
|
||||
"windows": "40 53 55 41 56 48 81 EC 90 00 00 00",
|
||||
"linux": "55 48 89 E5 41 57 41 56 49 89 FE 41 55 41 54 53 48 89 F3 48 83 EC ? F3 0F 11 85"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 звезда за операция „Разбита мрежа“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 звезди за операция „Разбита мрежа“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 звезди за операция „Разбита мрежа“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медал за служба 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Диамантена монета от операция „Счупен зъб“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 звезда за операция „Счупен зъб“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 звезди за операция „Счупен зъб“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 звезди за операция „Счупен зъб“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Медал за служба 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Диамантена монета от операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 звезда за операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 звезди за операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 звезди за операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 монета",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Монета за картата Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Медал за първия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Автентичен Значка за Dust II",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamantová mince šampionátu StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 hvězda operace Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 hvězd operace Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 hvězd operace Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medaile Za zásluhy (2020)",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamantová mince za operaci Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 hvězda operace Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 hvězd operace Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 hvězd operace Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medaile Za zásluhy (2021)",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamantová mince za operaci Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 hvězda operace Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 hvězd operace Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 hvězd operace Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mince šampionátu PGL Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Mince mapy Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medaile první sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznak Dust II (Genuine)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamantmønt: Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 stjerne til Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 stjerner til Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 stjerner til Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Tjenestemedalje 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamantmønt | Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 stjerne til Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 stjerner til Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 stjerner til Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Tjenestemedalje 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamantmønt | Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 stjerne til Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 stjerner til Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 stjerner til Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mønt: Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Banemønt: Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalje for første sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II-knappenål (Ægte)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamantmünze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 Stern für Operation Zerfetztes Netz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 Sterne für Operation Zerfetztes Netz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 Sterne für Operation Zerfetztes Netz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Verdienstmedaille 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamantmünze der Operation Zerbrochener Reißzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 Stern für Operation Zerbrochener Reißzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 Stern für Operation Zerbrochener Reißzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 Stern für Operation Zerbrochener Reißzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Verdienstmedaille 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamantmünze der Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 Stern für Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 Sterne für Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 Sterne für Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Münze – Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Münze der Karte Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Abzeichen der 1. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Anstecknadel: Dust II (Echt)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Διαμαντένιο νόμισμα Βερολίνο 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 Αστέρι για Επιχείρηση Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 Αστέρια για Επιχείρηση Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 Αστέρια για την Επιχείρηση Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Μετάλλιο υπηρεσίας 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Διαμαντένιο νόμισμα επιχείρησης Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 αστέρι για επιχείρηση Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 αστέρια για επιχείρηση Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 αστέρια για επιχείρηση Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Μετάλλιο Υπηρεσίας 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Διαμαντένιο νόμισμα Επιχείρησης Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 Αστέρι για την Επιχείρηση Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 Αστέρια για την Επιχείρηση Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 Αστέρια για την Επιχείρηση Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Νόμισμα Στοκχόλμη 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Νόμισμα χάρτη Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Ένα",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Καρφίτσα Dust II",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 Star for Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 Stars for Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 Stars for Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 Service Medal",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamond Operation Broken Fang Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 Star for Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 Stars for Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 Stars for Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 Service Medal",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamond Operation Riptide Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 Star for Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 Stars for Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 Stars for Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Coin",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Premier Season One Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Dust II Pin",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Moneda de diamante de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 estrella de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 estrellas de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 estrellas de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalla de Servicio de 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Moneda de diamante de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 estrella de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 estrellas de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 estrellas de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medalla de Servicio de 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Moneda de diamante de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 estrella de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 estrellas de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 estrellas de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moneda de Estocolmo 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Moneda del mapa Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalla de la primera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin de Dust II de aspecto genuino",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Moneda de diamante de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 estrella de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 estrellas de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 estrellas de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalla de Servicio de 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Moneda de diamante de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 estrella de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 estrellas de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 estrellas de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medalla de servicio del 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Moneda de diamante de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 estrella de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 estrellas de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 estrellas de la Operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moneda de Estocolmo 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Moneda del mapa Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalla de la primera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalla de la segunda temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin de Dust II de aspecto genuino",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berliini 2019 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 tähti Operaatio Pirstaleiselle verkolle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 tähteä Operaatio Pirstaleiselle verkolle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 tähteä Operaatio Pirstaleiselle verkolle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Palvelusmitali 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Timanttinen Operaatio Katkennut torahammas -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 tähti – Operaatio Katkennut torahammas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 tähteä – Operaatio Katkennut torahammas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 tähteä – Operaatio Katkennut torahammas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Palvelusmitali 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Timanttinen Operaatio Ristiaallokko -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 tähti – Operaatio Ristiaallokko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 tähteä – Operaatio Ristiaallokko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 tähteä – Operaatio Ristiaallokko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Tukholma 2021 -kolikko",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Premierin ykköskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Aito Dust II -pinssi",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Insigne en diamant de Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 étoile pour l'Opération Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 étoiles pour l'Opération Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 étoiles pour l'Opération Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Médaille de service 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Insigne en diamant de l'Opération Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "Opération Broken Fang : 1 étoile",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "Opération Broken Fang : 10 étoiles",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "Opération Broken Fang : 100 étoiles",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Médaille de service 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Insigne en diamant de l'Opération Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "Opération Riptide : 1 étoile",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "Opération Riptide : 10 étoiles",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "Opération Riptide : 100 étoiles",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Insigne de Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Insigne de carte : Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Médaille du mode Premier (saison 1)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin's Dust II (Authentique)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 csillag az Operation Shattered Webhez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 csillag az Operation Shattered Webhez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 csillag az Operation Shattered Webhez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020-as Szolgálati Érdemérem",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Gyémánt Operation Broken Fang Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 csillag az Operation Broken Fanghez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 csillag az Operation Broken Fanghez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 csillag az Operation Broken Fanghez",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021-es Szolgálati Érdemérem",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Gyémánt Operation Riptide Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 csillag az Operation Riptide-hoz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 csillag az Operation Riptide-hoz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 csillag az Operation Riptide-hoz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Érme",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Premier Első Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II kitűző (Eredeti)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Gettone di diamante di Berlino 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 Stella per l'Operazione Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 Stelle per l'Operazione Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 Stelle per l'Operazione Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medaglia al merito di servizio (2020)",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Gettone diamante dell'Operazione Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 Stella per l'Operazione Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 Stelle per l'Operazione Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 Stelle per l'Operazione Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medaglia al merito di servizio (2021)",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Gettone diamante dell'Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 Stella per l'Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 Stelle per l'Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 Stelle per l'Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Gettone di Stoccolma 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Gettone della mappa Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medaglia della Stagione uno Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Spilla di Dust II Autentico",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "Operation Shattered Web スター x 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "Operation Shattered Web スター x 10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "Operation Shattered Web スター x 100",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 従軍メダル",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Operation Broken Fang ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "Operation Broken Fang スター x 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "Operation Broken Fang スター x 10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "Operation Broken Fang スター x 100",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 従軍メダル",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Operation Riptide ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "Operation Riptide スター x 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "Operation Riptide スター x 10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "Operation Riptide スター x 100",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 コイン",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "プレミアシーズン 1 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "ジェニュイン Dust II ピン",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "베를린 2019 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "파괴 망 작전 별 1개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "파괴 망 작전 별 10개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "파괴 망 작전 별 100개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020년 무공 훈장",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "브로큰 팽 작전 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "브로큰 팽 작전 별 1개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "브로큰 팽 작전 별 10개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "브로큰 팽 작전 별 100개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021년 무공 훈장",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "립타이드 작전 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "립타이드 작전 별 1개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "립타이드 작전 별 10개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "립타이드 작전 별 100개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "스톡홀름 2021 주화",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "바살트 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "프리미어 시즌 1 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "진품 더스트 2 핀",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamanten Berlin 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 ster voor Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 sterren voor Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 sterren voor Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Dienstmedaille 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamanten Operation Broken Fang-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 ster voor Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 sterren voor Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 sterren voor Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Dienstmedaille 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamanten Operation Riptide-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 ster voor Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 sterren voor Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 sterren voor Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021-munt",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Premier-medaille voor seizoen één",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Authentiek Dust II-speld",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamantmynt for Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 stjerne til Operasjon Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 stjerner til Operasjon Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 stjerner til Operasjon Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Tjenestemedalje 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamantmynt for Operasjon Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 stjerne til Operasjon Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 stjerner til Operasjon Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 stjerner til Operasjon Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Tjenestemedalje 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamantmynt for Operasjon Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 stjerne til Operasjon Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 stjerner til Operasjon Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 stjerner til Operasjon Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mynt for Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Kartmynt for Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalje for 1. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pins – Dust II (Ekte)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamentowy żeton StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 gwiazda dla operacji Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 gwiazd dla operacji Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 gwiazd dla operacji Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medal za Służbę w 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamentowy żeton operacji Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 gwiazda dla operacji Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 gwiazd dla operacji Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 gwiazd dla operacji Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medal za Służbę w 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamentowy żeton operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 gwiazda dla operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 gwiazd dla operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 gwiazd dla operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Żeton PGL Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Żeton mapy Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medal 1. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznaka Dust II (oryginał)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Moeda de Diamante do Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 estrela da Operação Teia Fragmentada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 estrelas da Operação Teia Fragmentada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 estrelas da Operação Teia Fragmentada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalha de Serviço de 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Moeda de Diamante da Op. Presa Quebrada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 estrela da Operação Presa Quebrada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 estrelas da Operação Presa Quebrada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 estrelas da Operação Presa Quebrada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medalha de Serviço de 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Moeda de Diamante da Op. Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 estrela da Operação Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 estrelas da Operação Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 estrelas da Operação Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moeda do Estocolmo 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Moeda do Mapa Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalha da Primeira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Broche | Dust II Genuíno",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Moeda de Diamante de Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 Estrela - Operação Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 Estrelas - Operação Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 Estrelas - Operação Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalha de Serviço de 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Moeda de Diamante da Operação Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 Estrela - Operação Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 Estrelas - Operação Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 Estrelas - Operação Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medalha de Serviço de 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Moeda de Diamante da Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 Estrela - Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 Estrelas - Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 Estrelas - Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moeda de Estocolmo 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Moeda do Mapa \\\"Basalt\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalha da Temporada 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin - Dust II Genuíno",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 stea pentru operațiunea Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 stele pentru operațiunea Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 de stele pentru operațiunea Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalie de merit 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Monedă de diamant – Operațiunea Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 stea pentru operațiunea Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 stele pentru operațiunea Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 de stele pentru operațiunea Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Medalie de merit 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Monedă de diamant – Operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 stea pentru operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 stele pentru operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 stele pentru operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moneda Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Moneda hărții Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalie Premier - Sezonul 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Insignă Dust II (Autentic)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Бриллиантовая монета StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 звезда операции «Расколотая сеть»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 звёзд операции «Расколотая сеть»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 звёзд операции «Расколотая сеть»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медаль за службу в 2020 году",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Бриллиантовая монета операции «Сломанный клык»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 звезда операции «Сломанный клык»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 звёзд операции «Сломанный клык»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 звёзд операции «Сломанный клык»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Медаль за службу в 2021 году",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Бриллиантовая монета операции «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 звезда операции «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 звёзд операции «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 звёзд операции «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Монета PGL Major Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Монета карты Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Медаль первого премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Высшей пробы Значок: Dust II",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Diamantmynt för Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 stjärna för Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 stjärnor för Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 stjärnor för Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 års tjänstemedalj",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Diamantmynt för Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 stjärna för Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 stjärnor för Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 stjärnor för Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 års tjänstemedalj",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Diamantmynt för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 stjärna för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 stjärnor för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 stjärnor för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021-mynt",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Banmynt för Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Medalj för säsong ett av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Medalj för säsong två av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Äkta Dust II-pin",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "เหรียญเพชร Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 ดาวสำหรับปฏิบัติการ Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 ดาวสำหรับปฏิบัติการ Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 ดาวสำหรับปฏิบัติการ Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "เหรียญรางวัลบริการ 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "เหรียญเพชรปฏิบัติการ Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 ดาวสำหรับปฏิบัติการ Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 ดาวสำหรับปฏิบัติการ Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 ดาวสำหรับปฏิบัติการ Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "เหรียญรางวัลบริการ 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "เหรียญเพชรปฏิบัติการ Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 ดาวสำหรับปฏิบัติการ Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 ดาวสำหรับปฏิบัติการ Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 ดาวสำหรับปฏิบัติการ Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "เหรียญ Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "เหรียญแผนที่ Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่หนึ่ง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "เข็มกลัด Dust II (Genuine)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 Pırlanta Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "Parçalanmış Ağ Operasyonu İçin 1 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "Parçalanmış Ağ Operasyonu İçin 10 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "Parçalanmış Ağ Operasyonu İçin 100 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 Hizmet Madalyası",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Elmas Kırık Diş Operasyonu Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "Kırık Diş Operasyonu için 1 yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "Kırık Diş Operasyonu için 10 yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "Kırık Diş Operasyonu için 100 yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 Hizmet Madalyası",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Elmas Girdap Operasyonu Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "Girdap Operasyonu için 1 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "Girdap Operasyonu için 10 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "Girdap Operasyonu için 100 Yıldız",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Jetonu",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Seçkin Modu Birinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Hakiki Dust II Broşu",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Діамантова монета «Берлін 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 зірка для операції «Розірвана мережа»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 зірок для операції «Розірвана мережа»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 зірок для операції «Розірвана мережа»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медаль за службу 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Діамантова монета учасника операції «Зламане ікло»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 зірка для операції «Зламане ікло»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 зірок для операції «Зламане ікло»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 зірок для операції «Зламане ікло»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Медаль за службу 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Діамантова монета учасника операції «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 зірка для операції «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 зірок для операції «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 зірок для операції «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Монета «Стокгольм 2021»",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Монета мапи Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Медаль першого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Значок «Dust II» (з першої партії)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Huy chương kim cương Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 sao cho chiến dịch Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 sao cho chiến dịch Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 sao cho chiến dịch Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Huy chương phục vụ 2020",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "Huy chương kim cương chiến dịch Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 sao cho chiến dịch Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 sao cho chiến dịch Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 sao cho chiến dịch Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "Huy chương phục vụ 2021",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "Huy chương kim cương chiến dịch Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1 sao cho chiến dịch Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 sao cho chiến dịch Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 sao cho chiến dịch Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Huy chương Stockholm 2021",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Huy chương bản đồ - Basalt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "Huy chương Premier mùa 1",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Huy hiệu Dust II (Chính hãng)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "柏林 2019 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1颗用于“裂网大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10颗用于“裂网大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100颗用于“裂网大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 年服役勋章",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "“狂牙大行动”钻石币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1颗用于“狂牙大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10颗用于“狂牙大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100颗用于“狂牙大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 年服役勋章",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "“激流大行动”钻石币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "1颗用于“激流大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10颗用于“激流大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100颗用于“激流大行动”的大行动之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "斯德哥尔摩 2021 硬币",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "冰火岛地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "优先模式第一赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "炙热沙城 II 胸章(纯正)",
|
||||
|
||||
@@ -1274,21 +1274,6 @@
|
||||
"name": "Berlin 2019 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4671",
|
||||
"name": "1 顆《裂網行動》之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4671.png"
|
||||
},
|
||||
{
|
||||
"id": "4672",
|
||||
"name": "10 顆《裂網行動》之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4672.png"
|
||||
},
|
||||
{
|
||||
"id": "4673",
|
||||
"name": "100 顆《裂網行動》之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4673.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 年服役勳章",
|
||||
@@ -1394,21 +1379,6 @@
|
||||
"name": "「狂牙行動」鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
"id": "4704",
|
||||
"name": "1 顆「狂牙行動」之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4704.png"
|
||||
},
|
||||
{
|
||||
"id": "4705",
|
||||
"name": "10 顆「狂牙行動」之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4705.png"
|
||||
},
|
||||
{
|
||||
"id": "4706",
|
||||
"name": "100 顆「狂牙行動」之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4706.png"
|
||||
},
|
||||
{
|
||||
"id": "4737",
|
||||
"name": "2021 年服役勳章",
|
||||
@@ -1459,21 +1429,6 @@
|
||||
"name": "《猛潮行動》鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4763",
|
||||
"name": "一顆《猛潮行動》的行動之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4763.png"
|
||||
},
|
||||
{
|
||||
"id": "4764",
|
||||
"name": "10 顆《猛潮行動》的行動之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4764.png"
|
||||
},
|
||||
{
|
||||
"id": "4765",
|
||||
"name": "100 顆《猛潮行動》的行動之星",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4765.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 硬幣",
|
||||
@@ -1799,6 +1754,191 @@
|
||||
"name": "Basalt 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4985.png"
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "優先權第 1 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "正統 Dust II 徽章",
|
||||
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Жълти ивици"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Бродерия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Смахнато"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Овъглени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Змийско ухапване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Бронзови"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Партизански"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортни ръкавици | Свръхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортни ръкавици | Суша"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортни ръкавици | Кутията на Пандора"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортни ръкавици | Лабиринт от жив плет"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортни ръкавици | Амфибийно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортни ръкавици | Бронзово преобразуване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортни ръкавици | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортни ръкавици | Поквара"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортни ръкавици | Прашка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортни ръкавици | Едър дивеч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортни ръкавици | Ален шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортни ръкавици | Нощни"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Лунно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Пурпурно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Диамантена гърмяща змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралска змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Имперско каре"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Застигане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Състезателно зелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Резан „Червеният“"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Снежен леопард"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралицата ягуар"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Черна вратовръзка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Превръзки за ръце | Кожени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Превръзки за ръце | Клане"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Превръзки за ръце | Пустинен шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Превръзки за ръце | Пущинаци"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Превръзки за ръце | ВНИМАНИЕ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Превръзки за ръце | Изолирбанд"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Превръзки за ръце | Изолирбанд"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Превръзки за ръце | Жираф"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Превръзки за ръце | Пустинен шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Превръзки за ръце | Жираф"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Превръзки за ръце | Кожени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Превръзки за ръце | ВНИМАНИЕ!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Превръзки за ръце | Клане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Затъмнение"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Костенурка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Кръвно налягане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Финална линия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотористки ръкавици | БУФ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Командос от III рота"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Бум!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Задимяване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Освежаваща мента"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотористки ръкавици | БУФ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Костенурка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Финална линия"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Задимяване"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Лунно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Кръвно налягане"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Снежен леопард"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Командос от III рота"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралицата ягуар"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Имперско каре"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Пурпурно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Резан „Червеният“"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралска змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Диамантена гърмяща змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Застигане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Черна вратовръзка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Горска разпокъсана цифрова шарка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурно кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Изумрудена паяжина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Фундамент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурна паяжина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Едри сачми"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Монголско"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Полеви агент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Едри сачми"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурно кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Мраморно преливане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Фундамент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Полеви агент"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурна паяжина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Монголско"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортни ръкавици | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортни ръкавици | Поквара"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортни ръкавици | Лабиринт от жив плет"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортни ръкавици | Ален шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортни ръкавици | Едър дивеч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортни ръкавици | Нощни"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортни ръкавици | Суша"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортни ръкавици | Амфибийно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортни ръкавици | Бронзово преобразуване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортни ръкавици | Кутията на Пандора"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортни ръкавици | Прашка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Овъглени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Партизански"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Бронзови"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Змийско ухапване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Бродерия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Жълти ивици"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Смахнато"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Изумруденозелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Закалено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Гърмяща змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Закалено"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Řidičské rukavice (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandáže (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandáže (★) | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandáže (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandáže (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandáže (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandáže (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandáže (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandáže (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandáže (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandáže (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandáže (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandáže (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandáže (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Řidičské rukavice (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshandsker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshandsker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshandsker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshandsker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshandsker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshandsker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshandsker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshandsker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshandsker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshandsker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshandsker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshandsker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kørehandsker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kørehandsker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kørehandsker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kørehandsker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kørehandsker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kørehandsker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kørehandsker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kørehandsker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kørehandsker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kørehandsker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kørehandsker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kørehandsker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Håndbind (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Håndbind (★) | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Håndbind (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Håndbind (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Håndbind (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Håndbind (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Håndbind (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Håndbind (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Håndbind (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Håndbind (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Håndbind (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Håndbind (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Håndbind (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kørehandsker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kørehandsker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kørehandsker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kørehandsker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kørehandsker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kørehandsker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kørehandsker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kørehandsker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kørehandsker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kørehandsker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kørehandsker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Specialisthandsker (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Specialisthandsker (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialisthandsker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialisthandsker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialisthandsker (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialisthandsker (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialisthandsker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Specialisthandsker (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialisthandsker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialisthandsker (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialisthandsker (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshandsker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshandsker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshandsker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshandsker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshandsker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshandsker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshandsker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshandsker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshandsker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshandsker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshandsker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-handsker (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-handsker (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-handsker (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-handsker (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Gelbgebändert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Nadelspitze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Loser Kiefer"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Verkohlt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Schlangenbiss"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Brüniert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Guerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Supraleiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Dürr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Pandoras Büchse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Heckenirrgarten"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Amphibisch"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Schleuder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Großwildjagd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Scharlachrote Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Mondgewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Konvoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Purpurnes Gewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Diamantenrücken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Königsnatter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Kaiserliches Karo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Renn-Grün"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Rezan, der Rote"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schneeleopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Jaguarkönigin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schwarze Fliege"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Handbandagen (★) | Leder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Handbandagen (★) | Metzelei"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Handbandagen (★) | Wüsten-Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Handbandagen (★) | Ödland"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Handbandagen (★) | ACHTUNG!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Handbandagen (★) | Klebeband"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Handbandagen (★) | Klebeband"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Handbandagen (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Handbandagen (★) | Wüsten-Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Handbandagen (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Handbandagen (★) | Leder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Handbandagen (★) | ACHTUNG!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Handbandagen (★) | Metzelei"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Finsternis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Schildkröte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Blutdruck"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Ziellinie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | PENG!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | 3. Kommandokompanie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Bumm!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Rauch"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Kühle Minze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | PENG!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Schildkröte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Ziellinie"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Rauch"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Mondgewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Blutdruck"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schneeleopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | 3. Kommandokompanie"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Jaguarkönigin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Konvoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Kaiserliches Karo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Purpurnes Gewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Rezan, der Rote"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Königsnatter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Diamantenrücken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schwarze Fliege"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Wald-DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurner Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Smaragdgrünes Netz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Fundierung"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurnes Netz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Schrot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Außendienstmitarbeiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Schrot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurner Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Marmorfärbung"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Fundierung"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Außendienstmitarbeiter"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurnes Netz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Heckenirrgarten"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Scharlachrote Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Großwildjagd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Dürr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Amphibisch"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Pandoras Büchse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Schleuder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Verkohlt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Guerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Brüniert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Schlangenbiss"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Nadelspitze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Gelbgebändert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Loser Kiefer"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Smaragd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Einsatzgehärtet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Klapperschlange"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Einsatzgehärtet"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Σπορ γάντια | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Σπορ γάντια | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Σπορ γάντια | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Σπορ γάντια | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Σπορ γάντια | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Σπορ γάντια | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Σπορ γάντια | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Σπορ γάντια | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Σπορ γάντια | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Σπορ γάντια | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Σπορ γάντια | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Σπορ γάντια | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Γάντια οδηγού | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Γάντια μηχανής | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Γάντια μηχανής | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Γάντια μηχανής | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Γάντια μηχανής | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Γάντια οδηγού | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Σπορ γάντια | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Σπορ γάντια | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Σπορ γάντια | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Σπορ γάντια | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Σπορ γάντια | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Σπορ γάντια | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Σπορ γάντια | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Σπορ γάντια | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Σπορ γάντια | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Σπορ γάντια | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Σπορ γάντια | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Γάντια Hydra | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Γάντια Hydra | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Γάντια Hydra | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Γάντια Hydra | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Hand Wraps | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Hand Wraps | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Hand Wraps | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Hand Wraps | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Hand Wraps | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Hand Wraps | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Hand Wraps | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Hand Wraps | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Hand Wraps | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Hand Wraps | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Hand Wraps | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Hand Wraps | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moto Gloves | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto Gloves | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto Gloves | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto Gloves | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto Gloves | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto Gloves | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moto Gloves | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto Gloves | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto Gloves | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto Gloves | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto Gloves | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto Gloves | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Driver Gloves | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto Gloves | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Driver Gloves | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto Gloves | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Driver Gloves | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Driver Gloves | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Driver Gloves | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Driver Gloves | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Driver Gloves | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Driver Gloves | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Driver Gloves | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Driver Gloves | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialist Gloves | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialist Gloves | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialist Gloves | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialist Gloves | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialist Gloves | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialist Gloves | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialist Gloves | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialist Gloves | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sport Gloves | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sport Gloves | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sport Gloves | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sport Gloves | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sport Gloves | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sport Gloves | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sport Gloves | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sport Gloves | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sport Gloves | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra Gloves | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Gloves | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Gloves | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con bandas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caza mayor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competición"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Vendas de cuero ★ | Tierra yerma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guantes de motorista ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes de motorista ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes de motorista ★ | Presión sanguínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes de motorista ★ | Línea de meta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes de motorista ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes de motorista ★ | 3.ª Compañía de Comandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guantes de motorista ★ | ¡Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes de motorista ★ | Lanzando humo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guantes de motorista ★ | Menta fresca"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes de motorista ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes de motorista ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes de motorista ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes de motorista ★ | Línea de meta"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes de motorista ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes de motorista ★ | Lanzando humo"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes de motorista ★ | Presión sanguínea"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes de motorista ★ | 3.ª Compañía de Comandos"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guantes de especialista ★ | DDPAT boscoso"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guantes de especialista ★ | Telaraña esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mármol desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caza mayor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con bandas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guantes Hydra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guantes Hydra ★ | Cascabel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con franjas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Cacería grande"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competencia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Vendas de cuero ★ | Tierra yerma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guantes para moto ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes para moto ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes para moto ★ | Presión sanguínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes para moto ★ | Línea de meta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes para moto ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes para moto ★ | 3.ª Compañía de Comandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guantes para moto ★ | ¡Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes para moto ★ | Va humo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guantes para moto ★ | Menta fresca"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes para moto ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes para moto ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes para moto ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes para moto ★ | Línea de meta"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes para moto ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes para moto ★ | Va humo"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes para moto ★ | Presión sanguínea"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes para moto ★ | 3.ª Compañía de Comandos"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guantes de especialista ★ | DDPAT de bosque"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guantes de especialista ★ | Telaraña esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mármol desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Cacería grande"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con franjas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guantes Hydra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guantes Hydra ★ | Cascabel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Keltajuovainen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Ristipisto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Pitelemätön"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Hiiltynyt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Käärmeenpurema"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Pronssattu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Sissi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Urheiluhanskat | Suprajohde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Urheiluhanskat | Aavikko"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pandoran lipas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pensaslabyrintti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Urheiluhanskat | Maalle ja mereen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pronssimorfi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Urheiluhanskat | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Urheiluhanskat | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Urheiluhanskat | Ritsa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Urheiluhanskat | Metsästäjä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Urheiluhanskat | Tulipunainen shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Urheiluhanskat | Yönmustat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Ajohanskat | Kuukudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Ajohanskat | Saattue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Ajohanskat | Verenpunainen kudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Ajohanskat | Timanttiselkä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Ajohanskat | Kuningaskäärme"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Ajohanskat | Majesteettinen ruutukuosi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Ajohanskat | Ohitus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Ajohanskat | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Ajohanskat | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Ajohanskat | Lumileopardi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Ajohanskat | Jaguaarikuningatar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Ajohanskat | Smokki"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Käsisiteet | Nahka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Käsisiteet | Teurastus"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Käsisiteet | Aavikko-shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Käsisiteet | Julma maa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Käsisiteet | VAARA!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Käsisiteet | Ilmastointiteippi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Käsisiteet | Ilmastointiteippi"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Käsisiteet | Kirahvi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Käsisiteet | Aavikko-shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Käsisiteet | Kirahvi"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Käsisiteet | Nahka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Käsisiteet | VAARA!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Käsisiteet | Teurastus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Pimennys"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kilpikonnanvihreä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Verenpaine"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Maaliviiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | PAM!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | 3. kommandokomppania"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | PAM!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Savustaja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Jääminttu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | PAM!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kilpikonnanvihreä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kuljettajanhanskat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Maaliviiva"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kuljettajanhanskat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Savustaja"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Ajohanskat | Kuukudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Verenpaine"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Ajohanskat | Lumileopardi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | 3. kommandokomppania"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Ajohanskat | Jaguaarikuningatar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Ajohanskat | Saattue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Ajohanskat | Majesteettinen ruutukuosi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Ajohanskat | Verenpunainen kudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Ajohanskat | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Ajohanskat | Kuningaskäärme"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Ajohanskat | Timanttiselkä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Ajohanskat | Ohitus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Ajohanskat | Smokki"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Kesämaasto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Smaragdiseitti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Perusta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen seitti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Hauli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Moguli"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Kenttäagentti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Hauli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Marmorihäivytys"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Perusta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Kenttäagentti"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen seitti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Moguli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Urheiluhanskat | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Urheiluhanskat | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pensaslabyrintti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Urheiluhanskat | Tulipunainen shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Urheiluhanskat | Metsästäjä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Urheiluhanskat | Yönmustat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Urheiluhanskat | Aavikko"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Urheiluhanskat | Maalle ja mereen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pronssimorfi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pandoran lipas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Urheiluhanskat | Ritsa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Hiiltynyt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Sissi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Pronssattu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Käärmeenpurema"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Ristipisto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Keltajuovainen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Pitelemätön"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra-hanskat | Smaragdi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-hanskat | Panssaripinta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra-hanskat | Kalkkaro"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-hanskat | Panssaripinta"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Rainette jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Point d'aiguille"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Gueule béante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Calcination"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Morsure de serpent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Bronze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Guérilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Gants de sport (★) | Supraconducteur"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Gants de sport (★) | Aride"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Gants de sport (★) | Boîte de Pandore"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Gants de sport (★) | Labyrinthe de haies"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Gants de sport (★) | Amphibie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Gants de sport (★) | Dendrobates auratus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Gants de sport (★) | Oméga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Gants de sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Gants de sport (★) | Survivaliste"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Gants de sport (★) | Gros gibier"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Gants de sport (★) | Shemagh rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Gants de sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage lunaire"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Gants de pilote (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Gants de pilote (★) | Diamantin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Gants de pilote (★) | Serpent royal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Gants de pilote (★) | Tartan impérial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Gants de pilote (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Gants de pilote (★) | Vert bolide"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Gants de pilote (★) | Rezan le rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Gants de pilote (★) | Léopard des neiges"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Gants de pilote (★) | Reine jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Gants de pilote (★) | Smoking"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandages (★) | Cuir"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandages (★) | Carnage"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandages (★) | Shemagh du désert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandages (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandages (★) | ATTENTION !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandages (★) | Ruban adhésif"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandages (★) | Ruban adhésif"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandages (★) | Girafe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandages (★) | Shemagh du désert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandages (★) | Girafe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandages (★) | Cuir"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandages (★) | ATTENTION !"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandages (★) | Carnage"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Gants de moto (★) | Éclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Gants de moto (★) | Tortue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Gants de moto (★) | Hypertension"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Gants de moto (★) | Ligne d'arrivée"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Gants de moto (★) | POW !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Gants de moto (★) | 3ᵉ compagnie de commandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Gants de moto (★) | Boum !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Gants de moto (★) | Pleins gaz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Gants de moto (★) | Menthe fraîche"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Gants de moto (★) | POW !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Gants de moto (★) | Tortue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Gants de moto (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Gants de moto (★) | Ligne d'arrivée"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Gants de moto (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Gants de moto (★) | Pleins gaz"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage lunaire"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Gants de moto (★) | Hypertension"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Gants de pilote (★) | Léopard des neiges"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Gants de moto (★) | 3ᵉ compagnie de commandos"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Gants de pilote (★) | Reine jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Gants de pilote (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Gants de pilote (★) | Tartan impérial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Gants de pilote (★) | Rezan le rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Gants de pilote (★) | Serpent royal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Gants de pilote (★) | Diamantin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Gants de pilote (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Gants de pilote (★) | Smoking"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Tempéré numérique"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Kimono pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Toile émeraude"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Fondation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Toile pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Chevrotine"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Moghol"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Spécialiste du terrain"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Chevrotine"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Kimono pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Dégradé de marbre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Fondation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Spécialiste du terrain"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Toile pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Moghol"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Gants de sport (★) | Oméga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Gants de sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Gants de sport (★) | Labyrinthe de haies"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Gants de sport (★) | Shemagh rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Gants de sport (★) | Gros gibier"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Gants de sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Gants de sport (★) | Aride"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Gants de sport (★) | Amphibie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Gants de sport (★) | Dendrobates auratus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Gants de sport (★) | Boîte de Pandore"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Gants de sport (★) | Survivaliste"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Calcination"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Guérilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Bronze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Morsure de serpent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Point d'aiguille"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Rainette jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Gueule béante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Gants Hydra (★) | Émeraude"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Gants Hydra (★) | Cémenté"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Gants Hydra (★) | Crotale"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Gants Hydra (★) | Cémenté"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Jáde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Sárga Csíkos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Tűhegy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Zavaros"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Elszenesedett"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Kígyómarás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Bronzosított"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Gerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Szupravezető"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Száraz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Pandóra Szelencéje"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Sövényútvesztő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Kétéltű"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bronz Alak"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bűn"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Csúzli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nagyvad"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Skarlát Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hold-szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Konvoj"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Karmazsin Szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Csörgőkígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Királysikló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Birodalmi Takaró"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Előzés"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Versenyzöld"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Vörös Rezan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hópárduc"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Jaguárkirálynő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Fekete Nyakkendő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Kézkötések (★) | Bőr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Kézkötések (★) | Mészárlás"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Kézkötések (★) | Sivatagi Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Kézkötések (★) | Terméketlen Vidék"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Kézkötések (★) | VIGYÁZAT!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Kézkötések (★) | Szigszalag"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Kézkötések (★) | Szigszalag"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Kézkötések (★) | Zsiráf"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Kézkötések (★) | Sivatagi Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Kézkötések (★) | Zsiráf"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Kézkötések (★) | Bőr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Kézkötések (★) | VIGYÁZAT!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Kézkötések (★) | Mészárlás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fogyatkozás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Teknős"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Vérnyomás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Célvonal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | PUFF!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | 3. Kommandós Század"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Bumm!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Kifüstölve"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Hűsítő Menta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | PUFF!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Teknős"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fuvar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Célvonal"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fuvar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Kifüstölve"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hold-szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Vérnyomás"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hópárduc"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | 3. Kommandós Század"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Jaguárkirálynő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Konvoj"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Birodalmi Takaró"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Karmazsin Szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Vörös Rezan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Királysikló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Csörgőkígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Előzés"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Fekete Nyakkendő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Erdei DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Kimonó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Smaragdháló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Alapítvány"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Háló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Sörét"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Terepi Ügynök"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Sörét"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Kimonó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Fakuló Márvány"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Alapítvány"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Terepi Ügynök"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Háló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bűn"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Sövényútvesztő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Skarlát Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nagyvad"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Száraz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Kétéltű"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bronz Alak"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Pandóra Szelencéje"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Csúzli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Elszenesedett"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Gerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Bronzosított"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Kígyómarás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Tűhegy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Jáde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Sárga Csíkos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Zavaros"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Smaragdsikló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Fémezett"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Csörgőkígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Fémezett"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guanti sportivi ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guanti sportivi ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guanti sportivi ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guanti sportivi ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guanti sportivi ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guanti sportivi ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guanti sportivi ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guanti sportivi ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guanti sportivi ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guanti sportivi ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guanti sportivi ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guanti sportivi ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guanti da autista ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guanti da autista ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guanti da autista ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guanti da autista ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guanti da autista ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guanti da autista ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guanti da autista ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guanti da autista ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guanti da autista ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guanti da autista ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guanti da autista ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guanti da autista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Fasce per le mani ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Fasce per le mani ★ | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Fasce per le mani ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Fasce per le mani ★ | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Fasce per le mani ★ | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Fasce per le mani ★ | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Fasce per le mani ★ | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Fasce per le mani ★ | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Fasce per le mani ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Fasce per le mani ★ | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Fasce per le mani ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Fasce per le mani ★ | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Fasce per le mani ★ | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guanti da centauro ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guanti da centauro ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guanti da centauro ★ | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guanti da centauro ★ | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guanti da centauro ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guanti da centauro ★ | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guanti da centauro ★ | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guanti da centauro ★ | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guanti da centauro ★ | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guanti da centauro ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guanti da centauro ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guanti da centauro ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guanti da centauro ★ | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guanti da centauro ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guanti da centauro ★ | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guanti da autista ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guanti da centauro ★ | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guanti da autista ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guanti da centauro ★ | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guanti da autista ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guanti da autista ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guanti da autista ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guanti da autista ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guanti da autista ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guanti da autista ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guanti da autista ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guanti da autista ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guanti da autista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guanti sportivi ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guanti sportivi ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guanti sportivi ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guanti sportivi ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guanti sportivi ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guanti sportivi ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guanti sportivi ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guanti sportivi ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guanti sportivi ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guanti sportivi ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guanti sportivi ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guanti Hydra ★ | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guanti Hydra ★ | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guanti Hydra ★ | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guanti Hydra ★ | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Hand Wraps | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Hand Wraps | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Hand Wraps | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Hand Wraps | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Hand Wraps | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Hand Wraps | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Hand Wraps | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Hand Wraps | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Hand Wraps | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Hand Wraps | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Hand Wraps | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Hand Wraps | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moto Gloves | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto Gloves | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto Gloves | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto Gloves | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto Gloves | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto Gloves | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moto Gloves | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto Gloves | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto Gloves | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto Gloves | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto Gloves | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto Gloves | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Driver Gloves | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto Gloves | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Driver Gloves | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto Gloves | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Driver Gloves | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Driver Gloves | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Driver Gloves | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Driver Gloves | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Driver Gloves | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Driver Gloves | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Driver Gloves | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Driver Gloves | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialist Gloves | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialist Gloves | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialist Gloves | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialist Gloves | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialist Gloves | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialist Gloves | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialist Gloves | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialist Gloves | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sport Gloves | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sport Gloves | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sport Gloves | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sport Gloves | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sport Gloves | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sport Gloves | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sport Gloves | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sport Gloves | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sport Gloves | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra Gloves | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Gloves | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/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/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Gloves | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옥색"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옐로우 밴드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 꽃 자수"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 숯검댕이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 구리"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 게릴라"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 초전도체"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 불모의 땅"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 판도라의 상자"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 미로 정원"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 해저"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 브론즈 모프"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 오메가"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 바이스"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 슬링샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 대전투"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 진홍색 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 야행성"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ 운전용 장갑 | 달빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ 운전용 장갑 | 수송대"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ 운전용 장갑 | 선홍빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ 운전용 장갑 | 방울뱀"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ 운전용 장갑 | 킹 스네이크"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ 운전용 장갑 | 왕실 격자 무늬"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ 운전용 장갑 | 추월"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레이싱 그린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레잔 더 레드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ 운전용 장갑 | 눈표범"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ 운전용 장갑 | 여왕 재규어"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 운전용 장갑 | 검은 속박"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ 핸드랩 | 가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ 핸드랩 | 살인마"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ 핸드랩 | 사막 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ 핸드랩 | 황무지"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ 핸드랩 | 주의!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ 핸드랩 | 접착 테이프"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ 핸드랩 | 접착 테이프"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ 핸드랩 | 기린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ 핸드랩 | 사막 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ 핸드랩 | 기린"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ 핸드랩 | 가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ 핸드랩 | 주의!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ 핸드랩 | 살인마"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 월식"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 거북이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 혈관"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 결승선"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쾅!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 제3특전대"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쾅!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 스모크 아웃"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쿨민트"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쾅!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 거북이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 수송"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 결승선"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 수송"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 스모크 아웃"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ 운전용 장갑 | 달빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 혈관"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ 운전용 장갑 | 눈표범"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 제3특전대"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ 운전용 장갑 | 여왕 재규어"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ 운전용 장갑 | 수송대"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ 운전용 장갑 | 왕실 격자 무늬"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ 운전용 장갑 | 선홍빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레잔 더 레드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ 운전용 장갑 | 킹 스네이크"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ 운전용 장갑 | 방울뱀"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ 운전용 장갑 | 추월"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 운전용 장갑 | 검은 속박"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ 전문가 장갑 | 숲 디지털 위장"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ 전문가 장갑 | 진홍색 기모노"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ 전문가 장갑 | 에메랄드 거미줄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ 전문가 장갑 | 기초"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ 전문가 장갑 | 붉은 거미줄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ 전문가 장갑 | 벅샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ 전문가 장갑 | 모글"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ 전문가 장갑 | 현장 요원"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ 전문가 장갑 | 벅샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ 전문가 장갑 | 진홍색 기모노"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ 전문가 장갑 | 흐릿한 대리석"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ 전문가 장갑 | 기초"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ 전문가 장갑 | 현장 요원"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ 전문가 장갑 | 붉은 거미줄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ 전문가 장갑 | 모글"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 오메가"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 바이스"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 미로 정원"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 진홍색 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 대전투"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 야행성"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 불모의 땅"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 해저"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 브론즈 모프"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 판도라의 상자"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 슬링샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 숯검댕이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 게릴라"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 구리"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 꽃 자수"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옥색"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옐로우 밴드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ 히드라 장갑 | 에메랄드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ 히드라 장갑 | 표면 강화"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ 히드라 장갑 | 래틀러"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ 히드라 장갑 | 표면 강화"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandschoenen | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandschoenen | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandschoenen | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandschoenen | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandschoenen | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandschoenen | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandschoenen | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandschoenen | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandschoenen | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandschoenen | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandschoenen | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandschoenen | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Rijhandschoenen | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Rijhandschoenen | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Rijhandschoenen | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Rijhandschoenen | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Rijhandschoenen | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Rijhandschoenen | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Rijhandschoenen | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Rijhandschoenen | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Rijhandschoenen | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Rijhandschoenen | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Rijhandschoenen | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Rijhandschoenen | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Bandages | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Bandages | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Bandages | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Bandages | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Bandages | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Bandages | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Bandages | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Bandages | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Bandages | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Bandages | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Bandages | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Bandages | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Bandages | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Motorhandschoenen | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Motorhandschoenen | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Motorhandschoenen | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Motorhandschoenen | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Motorhandschoenen | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Motorhandschoenen | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Motorhandschoenen | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Motorhandschoenen | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Motorhandschoenen | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Motorhandschoenen | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Motorhandschoenen | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Motorhandschoenen | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Motorhandschoenen | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Motorhandschoenen | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Motorhandschoenen | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Rijhandschoenen | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Motorhandschoenen | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Rijhandschoenen | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Motorhandschoenen | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Rijhandschoenen | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Rijhandschoenen | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Rijhandschoenen | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Rijhandschoenen | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Rijhandschoenen | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Rijhandschoenen | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Rijhandschoenen | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Rijhandschoenen | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Rijhandschoenen | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandschoenen | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandschoenen | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandschoenen | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandschoenen | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandschoenen | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandschoenen | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandschoenen | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandschoenen | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandschoenen | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandschoenen | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandschoenen | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang-handschoenen | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshansker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshansker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshansker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshansker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshansker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshansker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshansker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshansker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshansker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshansker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshansker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshansker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kjørehansker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kjørehansker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kjørehansker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kjørehansker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kjørehansker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kjørehansker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kjørehansker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kjørehansker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kjørehansker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kjørehansker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kjørehansker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kjørehansker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Boksebandasje (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Boksebandasje (★) | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Boksebandasje (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Boksebandasje (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Boksebandasje (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Boksebandasje (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Boksebandasje (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Boksebandasje (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Boksebandasje (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Boksebandasje (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Boksebandasje (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Boksebandasje (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Boksebandasje (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kjørehansker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kjørehansker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kjørehansker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kjørehansker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kjørehansker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kjørehansker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kjørehansker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kjørehansker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kjørehansker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kjørehansker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kjørehansker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Spesialisthansker (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Spesialisthansker (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spesialisthansker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spesialisthansker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spesialisthansker (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spesialisthansker (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spesialisthansker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Spesialisthansker (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spesialisthansker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spesialisthansker (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spesialisthansker (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshansker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshansker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshansker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshansker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshansker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshansker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshansker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshansker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshansker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshansker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshansker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-hansker (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-hansker (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-hansker (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-hansker (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Jadeit"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Żółtopasy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Haft krzyżykowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Nieposkromiony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Osmalone"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Ukąszenie węża"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Brązowe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Partyzantka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Nadprzewodnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Pustynne"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Puszka Pandory"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Labirynt ogrodowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Morskie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Brązowa przemiana"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Miotacz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Wielka zwierzyna"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Szkarłatna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Mrok"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Splot księżycowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Konwój"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Szkarłatny splot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Grzechotnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewski wąż"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewska krata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyprzedzanie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyścigowa zieleń"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Rezan Czerwony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Irbis śnieżny"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królowa jaguarów"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Strój galowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Skóra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Rzeź"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Pustynna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Badlandy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | UWAGA!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Taśma izolacyjna"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Taśma izolacyjna"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Żyrafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Pustynna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Żyrafa"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Skóra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | UWAGA!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Rzeź"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Zaćmienie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Żółw"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Ciśnienie tętnicze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Linia mety"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | TRACH!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | 3 Kompania Komandosów"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Lecący dym"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Orzeźwiająca mięta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | TRACH!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Żółw"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Linia mety"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Lecący dym"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Splot księżycowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Ciśnienie tętnicze"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Irbis śnieżny"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | 3 Kompania Komandosów"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królowa jaguarów"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Konwój"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewska krata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Szkarłatny splot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Rezan Czerwony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewski wąż"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Grzechotnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyprzedzanie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Strój galowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Leśny DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatne kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szmaragdowa sieć"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Podkład"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatna sieć"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Loftka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Mulda"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Agent terenowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Loftka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatne kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Marmurkowy gradient"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Podkład"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Agent terenowy"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatna sieć"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Mulda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Labirynt ogrodowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Szkarłatna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Wielka zwierzyna"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Mrok"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Pustynne"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Morskie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Brązowa przemiana"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Puszka Pandory"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Miotacz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Osmalone"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Partyzantka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Brązowe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Ukąszenie węża"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Haft krzyżykowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Jadeit"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Żółtopasy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Nieposkromiony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Szmaragd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Stal nawęglana"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Grzechotnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Stal nawęglana"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Sapo amarelo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Bordado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Abocanhada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Carbonizada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Picada de Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Bronzeada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Guerrilha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Supercondutora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Árida"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caixa de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Labirinto Vivo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Anfíbia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Batráquio Bronzeado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Ômega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Vício"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Faquinha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caça das Grandes"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Shemagh Escarlate"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Comboio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Escama Diamante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rei Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Xadrez Imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Ultrapassante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Piloto Verde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rezan, o Vermelho"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Leopardo da Neve"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Onça Rainha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas ★ | Couro"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas ★ | Abate"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas ★ | Shemagh Laranja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Faixas ★ | Terra Batida"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas ★ | CUIDADO!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas ★ | Fita Adesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas ★ | Fita Adesiva"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas ★ | Girafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas ★ | Shemagh Laranja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas ★ | Girafa"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas ★ | Couro"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas ★ | CUIDADO!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas ★ | Abate"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Tartaruga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Pressão Arterial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Linha de Chegada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Companhia do 3º Comando"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Fumacê"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Hortelã"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Tartaruga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Linha de Chegada"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Fumacê"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Pressão Arterial"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Leopardo da Neve"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Companhia do 3º Comando"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Onça Rainha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Comboio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Xadrez Imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rezan, o Vermelho"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rei Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Escama Diamante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Ultrapassante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Camuflagem Digital — Floresta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Quimono Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Teia Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Fundação"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Teia Rubra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Bala de Caça"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Agente de Campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Bala de Caça"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Quimono Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mármore Desbotado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Fundação"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Agente de Campo"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Teia Rubra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Ômega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Vício"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Labirinto Vivo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Shemagh Escarlate"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caça das Grandes"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Árida"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Anfíbia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Batráquio Bronzeado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caixa de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Faquinha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Carbonizada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Guerrilha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Bronzeada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Picada de Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Bordado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Sapo amarelo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Abocanhada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Aquecimento de Aço"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Cascavel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Aquecimento de Aço"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Condutor ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas de Mão ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas de Mão ★ | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas de Mão ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Faixas de Mão ★ | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas de Mão ★ | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas de Mão ★ | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas de Mão ★ | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas de Mão ★ | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas de Mão ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas de Mão ★ | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas de Mão ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas de Mão ★ | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas de Mão ★ | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Condutor ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Luvas Hydra ★ | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas Hydra ★ | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Luvas Hydra ★ | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas Hydra ★ | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Carbonizat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Mănuși sport (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Mănuși sport (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Mănuși sport (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Mănuși sport (★) | Labirint din gard viu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Mănuși sport (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Mănuși sport (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Mănuși sport (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Mănuși sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Mănuși sport (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Mănuși sport (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Mănuși sport (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Mănuși sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură selenică"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Mănuși de condus (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură stacojie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Mănuși de condus (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Mănuși de condus (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Mănuși de condus (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Mănuși de condus (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Mănuși de condus (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Mănuși de condus (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Mănuși de condus (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Mănuși de condus (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Mănuși de condus (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Piele"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Măcel"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Piele"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Măcel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură selenică"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Mănuși de condus (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Mănuși de condus (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Mănuși de condus (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Mănuși de condus (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură stacojie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Mănuși de condus (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Mănuși de condus (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Mănuși de condus (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Mănuși de condus (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Mănuși de condus (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Mănuși sport (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Mănuși sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Mănuși sport (★) | Labirint din gard viu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Mănuși sport (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Mănuși sport (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Mănuși sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Mănuși sport (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Mănuși sport (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Mănuși sport (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Mănuși sport (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Mănuși sport (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Carbonizat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Жёлтые полосы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Остриё иглы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Без тормозов"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Зола"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Укус змеи"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Бронза"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Диверсант"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортивные перчатки | Сверхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортивные перчатки | Засуха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ящик Пандоры"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортивные перчатки | Живая изгородь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортивные перчатки | Амфибия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортивные перчатки | Окисление бронзы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортивные перчатки | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортивные перчатки | Порок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортивные перчатки | Мясник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортивные перчатки | Крупная добыча"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортивные перчатки | Кровавый шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ноктс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Водительские перчатки | Лунный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Водительские перчатки | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Водительские перчатки | Багряный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Водительские перчатки | Гремучая змея"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Водительские перчатки | Королевский змей"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Водительские перчатки | Имперская клетка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Водительские перчатки | Обгон"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Водительские перчатки | Гоночный зелёный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Водительские перчатки | Резан Красный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Водительские перчатки | Снежный барс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Водительские перчатки | Королева ягуаров"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Водительские перчатки | Чёрный галстук"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Обмотки рук | Кожа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Обмотки рук | Бойня"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Обмотки рук | Пустынный шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Обмотки рук | Пустошь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Обмотки рук | ОСТОРОЖНО!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Обмотки рук | Скотч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Обмотки рук | Скотч"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Обмотки рук | Жираф"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Обмотки рук | Пустынный шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Обмотки рук | Жираф"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Обмотки рук | Кожа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Обмотки рук | ОСТОРОЖНО!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Обмотки рук | Бойня"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Затмение"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Черепаха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Кровяное давление"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Финишная линия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | БУХ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Третья рота коммандо"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Бах!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Бросаю дымовую"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Мятная прохлада"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | БУХ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Черепаха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Финишная линия"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Бросаю дымовую"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Водительские перчатки | Лунный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Кровяное давление"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Водительские перчатки | Снежный барс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Третья рота коммандо"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Водительские перчатки | Королева ягуаров"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Водительские перчатки | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Водительские перчатки | Имперская клетка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Водительские перчатки | Багряный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Водительские перчатки | Резан Красный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Водительские перчатки | Королевский змей"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Водительские перчатки | Гремучая змея"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Водительские перчатки | Обгон"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Водительские перчатки | Чёрный галстук"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Перчатки спецназа | Пиксельный камуфляж «Лес»"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавое кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Перчатки спецназа | Изумрудная сеть"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Перчатки спецназа | Основа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавая паутина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Перчатки спецназа | Дробь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Перчатки спецназа | Покоритель гор"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Перчатки спецназа | Полевой агент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Перчатки спецназа | Дробь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавое кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Перчатки спецназа | Мраморный градиент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Перчатки спецназа | Основа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Перчатки спецназа | Полевой агент"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавая паутина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Перчатки спецназа | Покоритель гор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортивные перчатки | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортивные перчатки | Порок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортивные перчатки | Живая изгородь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортивные перчатки | Кровавый шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортивные перчатки | Крупная добыча"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ноктс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортивные перчатки | Засуха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортивные перчатки | Амфибия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортивные перчатки | Окисление бронзы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ящик Пандоры"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортивные перчатки | Мясник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Зола"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Диверсант"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Бронза"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Укус змеи"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Остриё иглы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Жёлтые полосы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Без тормозов"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Изумруд"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Поверхностная закалка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Гремучая змея"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Поверхностная закалка"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandskar | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandskar | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandskar | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandskar | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandskar | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandskar | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandskar | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandskar | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandskar | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandskar | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandskar | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandskar | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Förarhandskar | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Förarhandskar | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Förarhandskar | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Förarhandskar | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Förarhandskar | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Förarhandskar | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Förarhandskar | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Förarhandskar | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Förarhandskar | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Förarhandskar | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Förarhandskar | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Förarhandskar | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Handlindor | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Handlindor | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Handlindor | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Handlindor | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Handlindor | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Handlindor | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Handlindor | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Handlindor | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Handlindor | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Handlindor | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Handlindor | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Handlindor | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Handlindor | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moto-handskar | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto-handskar | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto-handskar | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto-handskar | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto-handskar | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto-handskar | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moto-handskar | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto-handskar | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Moto-handskar | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto-handskar | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto-handskar | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto-handskar | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto-handskar | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto-handskar | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto-handskar | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Förarhandskar | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto-handskar | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Förarhandskar | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto-handskar | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Förarhandskar | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Förarhandskar | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Förarhandskar | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Förarhandskar | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Förarhandskar | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Förarhandskar | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Förarhandskar | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Förarhandskar | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Förarhandskar | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Specialisthandskar | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Specialisthandskar | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandskar | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandskar | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandskar | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialisthandskar | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandskar | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialisthandskar | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandskar | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialisthandskar | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandskar | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandskar | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandskar | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandskar | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandskar | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandskar | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandskar | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandskar | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandskar | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandskar | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandskar | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandskar | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydrahandskar | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydrahandskar | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydrahandskar | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydrahandskar | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "ผ้าพันมือ (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "ถุงมือมอเตอร์ไซค์ (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "ถุงมือผู้เชี่ยวชาญ (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "ถุงมือ Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "ถุงมือ Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "ถุงมือ Hydra (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "ถุงมือ Hydra (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "ถุงมือ Hydra (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "ถุงมือ Hydra (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Yeşim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Sarı Çizgili"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | İğne Ucu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Gevşek Çene"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Alazlanmış"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Yılan Isırığı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Bronzlaştırılmış"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Gerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Spor Eldivenler | Süper İletken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Spor Eldivenler | Kurak"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Spor Eldivenler | Pandora'nın Kutusu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Spor Eldivenler | Labirent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Spor Eldivenler | Amfibik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Spor Eldivenler | Bronz Karışımı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Spor Eldivenler | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Spor Eldivenler | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Spor Eldivenler | Sapan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Spor Eldivenler | Büyük Av"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Spor Eldivenler | Al Poşu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Spor Eldivenler | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Gümüş Örgü"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Konvoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kızıl Örgü"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Çıngıraklı Yılan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kral Yılanı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | İmparatorluk Ekosesi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Geçiş"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Yarış Yeşili"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kırmızı Rezan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kar Leoparı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kraliçe Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Siyah Kravat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ El Sargıları | Deri"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ El Sargıları | Katliam"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ El Sargıları | Çöl Poşusu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ El Sargıları | Çorak Arazi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ El Sargıları | DİKKAT!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ El Sargıları | Koli Bandı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ El Sargıları | Koli Bandı"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ El Sargıları | Zürafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ El Sargıları | Çöl Poşusu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ El Sargıları | Zürafa"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ El Sargıları | Deri"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ El Sargıları | DİKKAT!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ El Sargıları | Katliam"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Tutulma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Kaplumbağa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Tansiyon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Bitiş Çizgisi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | 3. Komando Bölüğü"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Egzoz Dumanı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Serin Esinti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Kaplumbağa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Nakil"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Bitiş Çizgisi"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Nakil"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Egzoz Dumanı"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Gümüş Örgü"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | Tansiyon"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kar Leoparı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Motorcu Eldivenleri | 3. Komando Bölüğü"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kraliçe Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Konvoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | İmparatorluk Ekosesi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kızıl Örgü"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kırmızı Rezan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Kral Yılanı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Çıngıraklı Yılan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Geçiş"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Siyah Kravat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Orman DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Kızıl Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Zümrüt Ağ"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Temel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Kızıl Ağ"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Saçma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Saha Ajanı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Saçma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Kızıl Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Solgun Mermer"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Temel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Saha Ajanı"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Kızıl Ağ"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Uzman Eldivenleri | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Spor Eldivenler | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Spor Eldivenler | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Spor Eldivenler | Labirent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Spor Eldivenler | Al Poşu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Spor Eldivenler | Büyük Av"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Spor Eldivenler | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Spor Eldivenler | Kurak"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Spor Eldivenler | Amfibik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Spor Eldivenler | Bronz Karışımı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Spor Eldivenler | Pandora'nın Kutusu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Spor Eldivenler | Sapan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Alazlanmış"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Gerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Bronzlaştırılmış"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Kan Tazısı Eldivenleri | Yılan Isırığı"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | İğne Ucu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Yeşim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Sarı Çizgili"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Kırık Diş Eldivenleri | Gevşek Çene"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra Eldivenleri | Zümrüt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Eldivenleri | Sertleştirilmiş Kabuk"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra Eldivenleri | Çıngıraklı Yılan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Eldivenleri | Sertleştirilmiş Kabuk"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Жовті смужки"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Вишивка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Несамовитий"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Обвуглені"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Укус змії"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Засмаглі"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Партизанські"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Надпровідник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Сухий"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Скриня Пандори"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Живий лабіринт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Амфібія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Бронзова патина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Порок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Рогатка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Велика здобич"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Червоний шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Нокц"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Рукавиці водія (★) | Місячний візерунок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Рукавиці водія (★) | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Рукавиці водія (★) | Багряний візерунок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гримучник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Рукавиці водія (★) | Королівська змія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Рукавиці водія (★) | Імператорський плед"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Рукавиці водія (★) | Обгін"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гоночний зелений"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Рукавиці водія (★) | Резан Червоний"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Рукавиці водія (★) | Сніговий барс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Рукавиці водія (★) | Королева ягуарів"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Рукавиці водія (★) | Чорна краватка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Бинти на руки (★) | Шкіра"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Бинти на руки (★) | Бійня"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Бинти на руки (★) | Пустельний шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Бинти на руки (★) | Дикі землі"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Бинти на руки (★) | ОБЕРЕЖНО!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Бинти на руки (★) | Скотч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Бинти на руки (★) | Скотч"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Бинти на руки (★) | Жираф"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Бинти на руки (★) | Пустельний шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Бинти на руки (★) | Жираф"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Бинти на руки (★) | Шкіра"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Бинти на руки (★) | ОБЕРЕЖНО!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Бинти на руки (★) | Бійня"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Затемнення"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Черепаха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Кров’яний тиск"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Фінішна лінія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | БУМ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Командо з третьої роти"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | БАХ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Кидаю димову"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Свіжа м’ята"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | БУМ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Черепаха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Фінішна лінія"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Кидаю димову"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Рукавиці водія (★) | Місячний візерунок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Кров’яний тиск"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Рукавиці водія (★) | Сніговий барс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Рукавиці мотоцикліста (★) | Командо з третьої роти"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Рукавиці водія (★) | Королева ягуарів"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Рукавиці водія (★) | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Рукавиці водія (★) | Імператорський плед"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Рукавиці водія (★) | Багряний візерунок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Рукавиці водія (★) | Резан Червоний"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Рукавиці водія (★) | Королівська змія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гримучник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Рукавиці водія (★) | Обгін"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Рукавиці водія (★) | Чорна краватка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Пікс. камуфляж «Ліс»"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Багряне кімоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Смарагдове павутиння"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Фундамент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Криваве павутиння"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Картеч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Могул"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Польовий агент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Картеч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Багряне кімоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Мармуровий градієнт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Фундамент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Польовий агент"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Криваве павутиння"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Рукавиці спеціаліста (★) | Могул"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Порок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Живий лабіринт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Червоний шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Велика здобич"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Нокц"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Сухий"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Амфібія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Бронзова патина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Скриня Пандори"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Рогатка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Обвуглені"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Партизанські"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Засмаглі"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Рукавиці «Дойда» (★) | Укус змії"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Вишивка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Жовті смужки"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Рукавиці «Зламане ікло» (★) | Несамовитий"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Рукавиці «Гідра» (★) | Смарагд"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Рукавиці «Гідра» (★) | Зміцнені для футляра"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Рукавиці «Гідра» (★) | Гримуча змія"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Рукавиці «Гідра» (★) | Зміцнені для футляра"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Găng tay lái xe (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bọc tay (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bọc tay (★) | Slaughter"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bọc tay (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bọc tay (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bọc tay (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bọc tay (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bọc tay (★) | Duct Tape"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bọc tay (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bọc tay (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bọc tay (★) | Giraffe"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bọc tay (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bọc tay (★) | CAUTION!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bọc tay (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Găng tay mô tô (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Găng tay mô tô (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Găng tay mô tô (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Finish Line"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Smoke Out"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Găng tay mô tô (★) | Blood Pressure"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Găng tay mô tô (★) | 3rd Commando Company"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Găng tay lái xe (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Mogul"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Field Agent"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Găng tay chuyên viên (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Găng tay Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Găng tay Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Găng tay Hydra (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Găng tay Hydra (★) | Case Hardened"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Găng tay Hydra (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Găng tay Hydra (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "狂牙手套(★) | 翡翠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "狂牙手套(★) | 黄色斑纹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "狂牙手套(★) | 针尖"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "狂牙手套(★) | 精神错乱"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "血猎手套(★) | 焦炭"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "血猎手套(★) | 蛇咬"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "血猎手套(★) | 染铜"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "血猎手套(★) | 游击队"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "运动手套(★) | 超导体"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "运动手套(★) | 干旱"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "运动手套(★) | 潘多拉之盒"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "运动手套(★) | 树篱迷宫"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "运动手套(★) | 双栖"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "运动手套(★) | 青铜形态"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "运动手套(★) | 欧米伽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "运动手套(★) | 迈阿密风云"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "运动手套(★) | 弹弓"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "运动手套(★) | 大型猎物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "运动手套(★) | 猩红头巾"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "运动手套(★) | 夜行衣"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "驾驶手套(★) | 月色织物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "驾驶手套(★) | 护卫"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "驾驶手套(★) | 深红织物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "驾驶手套(★) | 菱背蛇纹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "驾驶手套(★) | 王蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "驾驶手套(★) | 蓝紫格子"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "驾驶手套(★) | 超越"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "驾驶手套(★) | 墨绿色调"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "驾驶手套(★) | 绯红列赞"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "驾驶手套(★) | 雪豹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "驾驶手套(★) | 美洲豹女王"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "驾驶手套(★) | 西装革履"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "裹手(★) | 皮革"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "裹手(★) | 屠夫"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "裹手(★) | 沙漠头巾"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "裹手(★) | 恶土"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "裹手(★) | 警告!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "裹手(★) | 防水布胶带"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "裹手(★) | 防水布胶带"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "裹手(★) | 长颈鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "裹手(★) | 沙漠头巾"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "裹手(★) | 长颈鹿"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "裹手(★) | 皮革"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "裹手(★) | 警告!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "裹手(★) | 屠夫"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "摩托手套(★) | 日蚀"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "摩托手套(★) | 玳瑁"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "摩托手套(★) | 血压"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "摩托手套(★) | 终点线"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "摩托手套(★) | 嘭!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "摩托手套(★) | 第三特种兵连"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "摩托手套(★) | *嘣!*"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "摩托手套(★) | 小心烟雾弹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "摩托手套(★) | 清凉薄荷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "摩托手套(★) | 嘭!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "摩托手套(★) | 玳瑁"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "摩托手套(★) | 交运"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "摩托手套(★) | 终点线"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "摩托手套(★) | 交运"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "摩托手套(★) | 小心烟雾弹"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "驾驶手套(★) | 月色织物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "摩托手套(★) | 血压"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "驾驶手套(★) | 雪豹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "摩托手套(★) | 第三特种兵连"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "驾驶手套(★) | 美洲豹女王"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "驾驶手套(★) | 护卫"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "驾驶手套(★) | 蓝紫格子"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "驾驶手套(★) | 深红织物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "驾驶手套(★) | 绯红列赞"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "驾驶手套(★) | 王蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "驾驶手套(★) | 菱背蛇纹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "驾驶手套(★) | 超越"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "驾驶手套(★) | 西装革履"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "专业手套(★) | 森林 DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "专业手套(★) | 深红和服"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "专业手套(★) | 翠绿之网"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "专业手套(★) | 元勋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "专业手套(★) | 深红之网"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "专业手套(★) | 狩鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "专业手套(★) | 大腕"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "专业手套(★) | 一线特工"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "专业手套(★) | 狩鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "专业手套(★) | 深红和服"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "专业手套(★) | 渐变大理石"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "专业手套(★) | 元勋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "专业手套(★) | 一线特工"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "专业手套(★) | 深红之网"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "专业手套(★) | 大腕"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "运动手套(★) | 欧米伽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "运动手套(★) | 迈阿密风云"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "运动手套(★) | 树篱迷宫"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "运动手套(★) | 猩红头巾"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "运动手套(★) | 大型猎物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "运动手套(★) | 夜行衣"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "运动手套(★) | 干旱"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "运动手套(★) | 双栖"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "运动手套(★) | 青铜形态"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "运动手套(★) | 潘多拉之盒"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "运动手套(★) | 弹弓"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "血猎手套(★) | 焦炭"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "血猎手套(★) | 游击队"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "血猎手套(★) | 染铜"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "血猎手套(★) | 蛇咬"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "狂牙手套(★) | 针尖"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "狂牙手套(★) | 翡翠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "狂牙手套(★) | 黄色斑纹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "狂牙手套(★) | 精神错乱"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "九头蛇手套(★) | 翡翠色调"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "九头蛇手套(★) | 表面淬火"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "九头蛇手套(★) | 响尾蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "九头蛇手套(★) | 表面淬火"
|
||||
}
|
||||
]
|
||||
@@ -5,204 +5,18 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 翠玉"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 黑黃斑紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 針繡花紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 衝鋒陷陣"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ 獵犬手套 | 焦黑"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ 獵犬手套 | 蛇吻"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ 獵犬手套 | 銅膚"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ 獵犬手套 | 游擊隊"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 運動員手套 | 超導體"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ 運動員手套 | 乾旱褐"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ 運動員手套 | 潘朵拉之盒"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ 運動員手套 | 樹籬迷宮"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ 運動員手套 | 兩棲"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ 運動員手套 | 青銅形態"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ 運動員手套 | 奧米伽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ 運動員手套 | 罪惡"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ 運動員手套 | 彈弓"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ 運動員手套 | 大型獵物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ 運動員手套 | 猩紅提花"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 運動員手套 | 夜行者"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ 駕駛手套 | 靛藍編織"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ 駕駛手套 | 軍衛隊"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ 駕駛手套 | 緋紅編織"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ 駕駛手套 | 響尾蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ 駕駛手套 | 王蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ 駕駛手套 | 帝國格紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ 駕駛手套 | 超車"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 駕駛手套 | 英式賽車綠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ 駕駛手套 | 瑞贊紅"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ 駕駛手套 | 雪豹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ 駕駛手套 | 美洲豹女王"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 駕駛手套 | 黑色領帶"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ 手綁帶 | 皮革"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -211,9 +25,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ 手綁帶 | 殺戮斑紋"
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ 手綁帶 | 沙漠緹花"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -221,6 +35,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ 手綁帶 | 不毛荒漠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ 手綁帶 | 小心!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ 手綁帶 | 強力膠帶"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
@@ -235,9 +61,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ 手綁帶 | 強力膠帶"
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ 手綁帶 | 長頸鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -247,15 +73,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ 手綁帶 | 沙漠緹花"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ 手綁帶 | 長頸鹿"
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ 手綁帶 | 皮革"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
@@ -265,9 +85,9 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ 手綁帶 | 小心!"
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ 手綁帶 | 殺戮斑紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
@@ -275,6 +95,36 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ 機車手套 | 暗藍蝕"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ 機車手套 | 海龜"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ 機車手套 | 熱血沸騰"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ 機車手套 | 終點線"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ 機車手套 | 啪!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ 機車手套 | 第三突擊兵連"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
@@ -287,30 +137,18 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ 機車手套 | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ 機車手套 | 煙霧繚繞"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ 機車手套 | 酷清新"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ 機車手套 | 啪!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ 機車手套 | 海龜"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ 機車手套 | 運輸"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
@@ -319,27 +157,75 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ 機車手套 | 終點線"
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ 機車手套 | 運輸"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ 機車手套 | 煙霧繚繞"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ 駕駛手套 | 靛藍編織"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ 機車手套 | 熱血沸騰"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ 駕駛手套 | 雪豹"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ 機車手套 | 第三突擊兵連"
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ 駕駛手套 | 美洲豹女王"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ 駕駛手套 | 軍衛隊"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ 駕駛手套 | 帝國格紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ 駕駛手套 | 緋紅編織"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ 駕駛手套 | 瑞贊紅"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ 駕駛手套 | 王蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ 駕駛手套 | 響尾蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ 駕駛手套 | 超車"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 駕駛手套 | 黑色領帶"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -347,36 +233,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ 技術士手套 | 森林數位迷彩"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ 技術士手套 | 玫瑰紅和服"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ 技術士手套 | 翡翠綠網"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ 技術士手套 | 橘灰基礎款"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ 技術士手套 | 赤紅之網"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ 技術士手套 | 獵鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
@@ -385,9 +247,21 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ 技術士手套 | 雪丘"
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ 技術士手套 | 外勤幹員"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ 技術士手套 | 獵鹿"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ 技術士手套 | 玫瑰紅和服"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
@@ -395,6 +269,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ 技術士手套 | 大理石漸層"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ 技術士手套 | 橘灰基礎款"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
@@ -409,9 +289,129 @@
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ 技術士手套 | 外勤幹員"
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ 技術士手套 | 赤紅之網"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ 技術士手套 | 雪丘"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ 運動員手套 | 奧米伽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ 運動員手套 | 罪惡"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ 運動員手套 | 樹籬迷宮"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ 運動員手套 | 猩紅提花"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ 運動員手套 | 大型獵物"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 運動員手套 | 夜行者"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ 運動員手套 | 乾旱褐"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ 運動員手套 | 兩棲"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ 運動員手套 | 青銅形態"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ 運動員手套 | 潘朵拉之盒"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ 運動員手套 | 彈弓"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ 獵犬手套 | 焦黑"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ 獵犬手套 | 游擊隊"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ 獵犬手套 | 銅膚"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ 獵犬手套 | 蛇吻"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 針繡花紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 翠玉"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 黑黃斑紋"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ 《狂牙行動》手套 | 衝鋒陷陣"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
@@ -419,6 +419,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ 九頭蛇手套 | 祖母綠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ 九頭蛇手套 | 外殼硬化"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
@@ -430,11 +436,5 @@
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ 九頭蛇手套 | 響尾蛇"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ 九頭蛇手套 | 外殼硬化"
|
||||
}
|
||||
]
|
||||
|
Before Width: | Height: | Size: 374 KiB |
|
Before Width: | Height: | Size: 376 KiB |
|
Before Width: | Height: | Size: 368 KiB |
|
Before Width: | Height: | Size: 402 KiB |
|
Before Width: | Height: | Size: 414 KiB |
|
Before Width: | Height: | Size: 416 KiB |
|
Before Width: | Height: | Size: 398 KiB |
|
Before Width: | Height: | Size: 401 KiB |
|
Before Width: | Height: | Size: 426 KiB |
BIN
website/img/skins/collectible-4986.png
Normal file
|
After Width: | Height: | Size: 188 KiB |
BIN
website/img/skins/collectible-4987.png
Normal file
|
After Width: | Height: | Size: 200 KiB |
BIN
website/img/skins/collectible-4988.png
Normal file
|
After Width: | Height: | Size: 180 KiB |
BIN
website/img/skins/collectible-4989.png
Normal file
|
After Width: | Height: | Size: 177 KiB |
BIN
website/img/skins/collectible-4990.png
Normal file
|
After Width: | Height: | Size: 176 KiB |
BIN
website/img/skins/collectible-4991.png
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
website/img/skins/collectible-4992.png
Normal file
|
After Width: | Height: | Size: 170 KiB |
BIN
website/img/skins/collectible-4993.png
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
website/img/skins/collectible-4994.png
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
website/img/skins/collectible-4995.png
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
website/img/skins/collectible-4996.png
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
website/img/skins/collectible-4997.png
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
website/img/skins/collectible-4998.png
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
website/img/skins/collectible-4999.png
Normal file
|
After Width: | Height: | Size: 179 KiB |
BIN
website/img/skins/collectible-5000.png
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
website/img/skins/collectible-5001.png
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
website/img/skins/collectible-5002.png
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
website/img/skins/collectible-5003.png
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
website/img/skins/collectible-5004.png
Normal file
|
After Width: | Height: | Size: 179 KiB |
BIN
website/img/skins/collectible-5005.png
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
website/img/skins/collectible-5006.png
Normal file
|
After Width: | Height: | Size: 175 KiB |
BIN
website/img/skins/collectible-5007.png
Normal file
|
After Width: | Height: | Size: 173 KiB |
BIN
website/img/skins/collectible-5008.png
Normal file
|
After Width: | Height: | Size: 183 KiB |
BIN
website/img/skins/collectible-5009.png
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
website/img/skins/collectible-5010.png
Normal file
|
After Width: | Height: | Size: 180 KiB |
BIN
website/img/skins/collectible-5011.png
Normal file
|
After Width: | Height: | Size: 178 KiB |