mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-19 10:58:20 +00:00
Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8bdc7b354 | ||
|
|
4df99370c2 | ||
|
|
9e59456c9f | ||
|
|
1f03e1c4f0 | ||
|
|
129b34f5c0 | ||
|
|
fbf473b893 | ||
|
|
10a4691429 | ||
|
|
ae8fb3b677 | ||
|
|
1ef12ed6b2 | ||
|
|
3f174a5013 | ||
|
|
b3f42598e7 | ||
|
|
2079ef5393 | ||
|
|
a633873980 | ||
|
|
d7af2fea89 | ||
|
|
439c6eaf2d | ||
|
|
a7cce74425 | ||
|
|
5b43b2daef | ||
|
|
23cd692032 | ||
|
|
b801b6592a | ||
|
|
be8633f82b | ||
|
|
191773fc5a | ||
|
|
40e18c9663 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -2,4 +2,5 @@
|
||||
bin/
|
||||
obj/
|
||||
website/getskins.php
|
||||
.idea/
|
||||
.idea/
|
||||
WeaponPaints.sln.DotSettings.user
|
||||
|
||||
29
Events.cs
29
Events.cs
@@ -4,6 +4,7 @@ using CounterStrikeSharp.API.Core.Attributes.Registration;
|
||||
using CounterStrikeSharp.API.Modules.Entities;
|
||||
using CounterStrikeSharp.API.Modules.Memory;
|
||||
using CounterStrikeSharp.API.Modules.Memory.DynamicFunctions;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
@@ -13,7 +14,7 @@ namespace WeaponPaints
|
||||
|
||||
[GameEventHandler]
|
||||
public HookResult OnClientFullConnect(EventPlayerConnectFull @event, GameEventInfo info)
|
||||
{
|
||||
{
|
||||
CCSPlayerController? player = @event.Userid;
|
||||
|
||||
if (player is null || !player.IsValid || player.IsBot ||
|
||||
@@ -58,6 +59,8 @@ namespace WeaponPaints
|
||||
catch
|
||||
{
|
||||
}
|
||||
|
||||
Players.Add(player);
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
@@ -113,6 +116,7 @@ namespace WeaponPaints
|
||||
|
||||
_temporaryPlayerWeaponWear.TryRemove(player.Slot, out _);
|
||||
CommandsCooldown.Remove(player.Slot);
|
||||
Players.Remove(player);
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
@@ -142,7 +146,10 @@ namespace WeaponPaints
|
||||
|
||||
GivePlayerMusicKit(player);
|
||||
GivePlayerAgent(player);
|
||||
GivePlayerGloves(player);
|
||||
Server.NextFrame(() =>
|
||||
{
|
||||
GivePlayerGloves(player);
|
||||
});
|
||||
GivePlayerPin(player);
|
||||
|
||||
return HookResult.Continue;
|
||||
@@ -219,7 +226,7 @@ namespace WeaponPaints
|
||||
|
||||
if (designerName.Contains("weapon"))
|
||||
{
|
||||
Server.NextFrame(() =>
|
||||
Server.NextWorldUpdate(() =>
|
||||
{
|
||||
var weapon = new CBasePlayerWeapon(entity.Handle);
|
||||
if (!weapon.IsValid) return;
|
||||
@@ -235,7 +242,7 @@ namespace WeaponPaints
|
||||
|
||||
if (steamid != null && steamid.IsValid())
|
||||
{
|
||||
player = Utilities.GetPlayers().FirstOrDefault(p => p.IsValid && p.SteamID == steamid.SteamId64);
|
||||
player = Players.FirstOrDefault(p => p.IsValid && p.SteamID == steamid.SteamId64);
|
||||
|
||||
if (player == null)
|
||||
player = Utilities.GetPlayerFromSteamId(weapon.OriginalOwnerXuidLow);
|
||||
@@ -248,7 +255,7 @@ namespace WeaponPaints
|
||||
|
||||
if (string.IsNullOrEmpty(player?.PlayerName)) return;
|
||||
if (!Utility.IsPlayerValid(player)) return;
|
||||
|
||||
|
||||
GivePlayerWeaponSkin(player, weapon);
|
||||
}
|
||||
catch (Exception)
|
||||
@@ -262,11 +269,7 @@ namespace WeaponPaints
|
||||
{
|
||||
if (!Config.Additional.ShowSkinImage) return;
|
||||
|
||||
foreach (var player in Utilities.GetPlayers().Where(p =>
|
||||
p is { IsValid: true, PlayerPawn.IsValid: true, IsBot: false } and
|
||||
{ Connected: PlayerConnectedState.PlayerConnected }
|
||||
)
|
||||
)
|
||||
foreach (var player in Players)
|
||||
{
|
||||
if (_playerWeaponImage.TryGetValue(player.Slot, out var value) && !string.IsNullOrEmpty(value))
|
||||
{
|
||||
@@ -282,7 +285,7 @@ namespace WeaponPaints
|
||||
var player = @event.Userid;
|
||||
if (player == null || !player.IsValid || player.IsBot) return HookResult.Continue;
|
||||
if (!@event.Item.Contains("knife")) return HookResult.Continue;
|
||||
|
||||
|
||||
var weaponDefIndex = (int)@event.Defindex;
|
||||
|
||||
if (!HasChangedKnife(player, out var _) || !HasChangedPaint(player, weaponDefIndex, out var _))
|
||||
@@ -292,7 +295,7 @@ namespace WeaponPaints
|
||||
{
|
||||
GiveOnItemPickup(player);
|
||||
}
|
||||
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
|
||||
@@ -337,7 +340,7 @@ namespace WeaponPaints
|
||||
RegisterEventHandler<EventRoundStart>(OnRoundStart);
|
||||
RegisterEventHandler<EventRoundEnd>(OnRoundEnd);
|
||||
RegisterEventHandler<EventRoundMvp>(OnRoundMvp);
|
||||
RegisterListener<Listeners.OnEntityCreated>(OnEntityCreated);
|
||||
RegisterListener<Listeners.OnEntitySpawned>(OnEntityCreated);
|
||||
RegisterEventHandler<EventPlayerDeath>(OnPlayerDeath);
|
||||
|
||||
if (Config.Additional.ShowSkinImage)
|
||||
|
||||
@@ -25,7 +25,7 @@ public partial class WeaponPaints
|
||||
{"weapon_g3sg1", "G3SG1"},
|
||||
{"weapon_galilar", "Galil AR"},
|
||||
{"weapon_m249", "M249"},
|
||||
{"weapon_m4a1", "M4A1"},
|
||||
{"weapon_m4a1", "M4A4"},
|
||||
{"weapon_mac10", "MAC-10"},
|
||||
{"weapon_p90", "P90"},
|
||||
{"weapon_mp5sd", "MP5-SD"},
|
||||
@@ -168,4 +168,6 @@ public partial class WeaponPaints
|
||||
private static readonly PluginCapability<IMenuApi> MenuCapability = new("menu:nfcore");
|
||||
|
||||
private int _fadeSeed;
|
||||
|
||||
internal List<CCSPlayerController> Players = [];
|
||||
}
|
||||
@@ -6,7 +6,6 @@ using CounterStrikeSharp.API.Modules.Timers;
|
||||
using CounterStrikeSharp.API.Modules.Utils;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Runtime.InteropServices;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace WeaponPaints
|
||||
@@ -17,9 +16,9 @@ namespace WeaponPaints
|
||||
{
|
||||
if (!Config.Additional.SkinEnabled) return;
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out _)) return;
|
||||
|
||||
|
||||
bool isKnife = weapon.DesignerName.Contains("knife") || weapon.DesignerName.Contains("bayonet");
|
||||
|
||||
|
||||
switch (isKnife)
|
||||
{
|
||||
case true when !HasChangedKnife(player, out var _):
|
||||
@@ -37,6 +36,9 @@ namespace WeaponPaints
|
||||
|
||||
weapon.AttributeManager.Item.ItemDefinitionIndex = (ushort)newDefIndex.Key;
|
||||
weapon.AttributeManager.Item.EntityQuality = 3;
|
||||
|
||||
weapon.AttributeManager.Item.AttributeList.Attributes.RemoveAll();
|
||||
weapon.AttributeManager.Item.NetworkedDynamicAttributes.Attributes.RemoveAll();
|
||||
break;
|
||||
}
|
||||
default:
|
||||
@@ -61,22 +63,22 @@ namespace WeaponPaints
|
||||
weapon.FallbackPaintKit = GetRandomPaint(weaponDefIndex);
|
||||
weapon.FallbackSeed = 0;
|
||||
weapon.FallbackWear = 0.01f;
|
||||
|
||||
|
||||
weapon.AttributeManager.Item.NetworkedDynamicAttributes.Attributes.RemoveAll();
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture prefab", GetRandomPaint(weaponDefIndex));
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture seed", 0);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture wear", 0.01f);
|
||||
|
||||
|
||||
weapon.AttributeManager.Item.AttributeList.Attributes.RemoveAll();
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.AttributeList.Handle, "set item texture prefab", GetRandomPaint(weaponDefIndex));
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.AttributeList.Handle, "set item texture seed", 0);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.AttributeList.Handle, "set item texture wear", 0.01f);
|
||||
|
||||
|
||||
fallbackPaintKit = weapon.FallbackPaintKit;
|
||||
|
||||
|
||||
if (fallbackPaintKit == 0)
|
||||
return;
|
||||
|
||||
|
||||
skinInfo = SkinsList
|
||||
.Where(w =>
|
||||
w["weapon_defindex"]?.ToObject<int>() == weaponDefIndex &&
|
||||
@@ -96,9 +98,8 @@ namespace WeaponPaints
|
||||
weapon.AttributeManager.Item.AttributeList.Attributes.RemoveAll();
|
||||
weapon.AttributeManager.Item.NetworkedDynamicAttributes.Attributes.RemoveAll();
|
||||
|
||||
weapon.AttributeManager.Item.ItemID = 16384;
|
||||
weapon.AttributeManager.Item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
||||
weapon.AttributeManager.Item.ItemIDHigh = weapon.AttributeManager.Item.ItemIDLow >> 32;
|
||||
UpdatePlayerEconItemId(weapon.AttributeManager.Item);
|
||||
|
||||
weapon.AttributeManager.Item.CustomName = weaponInfo.Nametag;
|
||||
weapon.FallbackPaintKit = weaponInfo.Paint;
|
||||
|
||||
@@ -133,10 +134,9 @@ namespace WeaponPaints
|
||||
.ToList();
|
||||
|
||||
isLegacyModel = skinInfo.Count <= 0 || skinInfo[0].Value<bool>("legacy_model");
|
||||
|
||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, isLegacyModel);
|
||||
}
|
||||
|
||||
|
||||
// silly method to update sticker when call RefreshWeapons()
|
||||
private void IncrementWearForWeaponWithStickers(CCSPlayerController player, CBasePlayerWeapon weapon)
|
||||
{
|
||||
@@ -170,7 +170,7 @@ namespace WeaponPaints
|
||||
foreach (var sticker in weaponInfo.Stickers)
|
||||
{
|
||||
int stickerSlot = weaponInfo.Stickers.IndexOf(sticker);
|
||||
|
||||
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} id", ViewAsFloat(sticker.Id));
|
||||
if (sticker.OffsetX != 0 || sticker.OffsetY != 0)
|
||||
@@ -187,7 +187,7 @@ namespace WeaponPaints
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} rotation", sticker.Rotation);
|
||||
}
|
||||
|
||||
|
||||
if (_temporaryPlayerWeaponWear.TryGetValue(player.Slot, out var playerWear) &&
|
||||
playerWear.TryGetValue(weaponDefIndex, out float storedWear))
|
||||
{
|
||||
@@ -215,7 +215,7 @@ namespace WeaponPaints
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
"keychain slot 0 offset z", keyChain.OffsetZ);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
"keychain slot 0 seed", keyChain.Seed);
|
||||
"keychain slot 0 seed", ViewAsFloat(keyChain.Seed));
|
||||
}
|
||||
|
||||
private static void GiveKnifeToPlayer(CCSPlayerController? player)
|
||||
@@ -332,13 +332,27 @@ namespace WeaponPaints
|
||||
if (!PlayerHasKnife(player) && hasKnife)
|
||||
{
|
||||
var newKnife = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.Knife));
|
||||
newKnife.AddEntityIOEvent("Kill", newKnife, null, "", 0.01f);
|
||||
var newWeapon = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.USP));
|
||||
player.GiveNamedItem(CsItem.Knife);
|
||||
player.ExecuteClientCommand("slot3");
|
||||
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||
|
||||
Server.NextFrame(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
if (newKnife != null && newKnife.IsValid)
|
||||
newKnife.AddEntityIOEvent("Kill", newKnife, null, "", 0.01f);
|
||||
if (newWeapon != null && newWeapon.IsValid)
|
||||
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.LogWarning("Error AddEntityIOEvent " + ex.Message);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
foreach (var entry in weaponsWithAmmo)
|
||||
{
|
||||
foreach (var ammo in entry.Value)
|
||||
@@ -378,9 +392,13 @@ namespace WeaponPaints
|
||||
pawn.SetModel(model);
|
||||
}
|
||||
|
||||
CEconItemView item = pawn.EconGloves;
|
||||
|
||||
item.NetworkedDynamicAttributes.Attributes.RemoveAll();
|
||||
item.AttributeList.Attributes.RemoveAll();
|
||||
|
||||
Instance.AddTimer(0.08f, () =>
|
||||
{
|
||||
CEconItemView item = pawn.EconGloves;
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!player.IsValid)
|
||||
@@ -396,13 +414,19 @@ namespace WeaponPaints
|
||||
return;
|
||||
|
||||
item.ItemDefinitionIndex = gloveId;
|
||||
item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
||||
item.ItemIDHigh = 16384;
|
||||
|
||||
UpdatePlayerEconItemId(item);
|
||||
|
||||
item.NetworkedDynamicAttributes.Attributes.RemoveAll();
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.NetworkedDynamicAttributes.Handle, "set item texture prefab", weaponInfo.Paint);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.NetworkedDynamicAttributes.Handle, "set item texture seed", weaponInfo.Seed);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.NetworkedDynamicAttributes.Handle, "set item texture wear", weaponInfo.Wear);
|
||||
|
||||
item.AttributeList.Attributes.RemoveAll();
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.AttributeList.Handle, "set item texture prefab", weaponInfo.Paint);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.AttributeList.Handle, "set item texture seed", weaponInfo.Seed);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(item.AttributeList.Handle, "set item texture wear", weaponInfo.Wear);
|
||||
|
||||
item.Initialized = true;
|
||||
|
||||
SetBodygroup(pawn, "default_gloves", 1);
|
||||
@@ -440,19 +464,16 @@ namespace WeaponPaints
|
||||
pawn.AcceptInput("SetBodygroup", value:$"{group},{value}");
|
||||
}
|
||||
|
||||
private static void UpdateWeaponMeshGroupMask(CBaseEntity weapon, bool isLegacy = false)
|
||||
private void UpdateWeaponMeshGroupMask(CBaseEntity weapon, bool isLegacy = false)
|
||||
{
|
||||
if (weapon.CBodyComponent?.SceneNode == null) return;
|
||||
var skeleton = weapon.CBodyComponent.SceneNode.GetSkeletonInstance();
|
||||
var value = (ulong)(isLegacy ? 2 : 1);
|
||||
if (weapon.CBodyComponent?.SceneNode == null) return;
|
||||
//var skeleton = weapon.CBodyComponent.SceneNode.GetSkeletonInstance();
|
||||
// skeleton.ModelState.MeshGroupMask = isLegacy ? 2UL : 1UL;
|
||||
|
||||
if (skeleton.ModelState.MeshGroupMask != value)
|
||||
{
|
||||
skeleton.ModelState.MeshGroupMask = value;
|
||||
}
|
||||
weapon.AcceptInput("SetBodygroup", value: $"body,{(isLegacy ? 1 : 0)}");
|
||||
}
|
||||
|
||||
private static void UpdatePlayerWeaponMeshGroupMask(CCSPlayerController player, CBasePlayerWeapon weapon, bool isLegacy)
|
||||
private void UpdatePlayerWeaponMeshGroupMask(CCSPlayerController player, CBasePlayerWeapon weapon, bool isLegacy)
|
||||
{
|
||||
UpdateWeaponMeshGroupMask(weapon, isLegacy);
|
||||
}
|
||||
@@ -587,4 +608,4 @@ namespace WeaponPaints
|
||||
return BitConverter.Int32BitsToSingle((int)value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,12 +2,15 @@ using System.Runtime.InteropServices;
|
||||
using CounterStrikeSharp.API;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Attributes;
|
||||
using CounterStrikeSharp.API.Core.Attributes.Registration;
|
||||
using CounterStrikeSharp.API.Modules.Commands;
|
||||
using CounterStrikeSharp.API.Modules.Entities.Constants;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using MySqlConnector;
|
||||
|
||||
namespace WeaponPaints;
|
||||
|
||||
[MinimumApiVersion(276)]
|
||||
[MinimumApiVersion(338)]
|
||||
public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig>
|
||||
{
|
||||
internal static WeaponPaints Instance { get; private set; } = new();
|
||||
@@ -17,15 +20,15 @@ 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.1d";
|
||||
public override string ModuleVersion => "3.2b";
|
||||
|
||||
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");
|
||||
// Hardcoded hotfix needs to be changed later (Not needed 17.09.2025)
|
||||
//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;
|
||||
|
||||
@@ -140,4 +143,4 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,20 +9,20 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<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" />
|
||||
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.361" />
|
||||
<PackageReference Include="Dapper" Version="2.1.66" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.5.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.5-beta1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="gamedata\*.*" CopyToOutputDirectory="PreserveNewest" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="MenuManagerApi">
|
||||
<HintPath>3rd_party\MenuManagerApi.dll</HintPath>
|
||||
|
||||
@@ -1,2 +1,11 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:Boolean x:Key="/Default/AddReferences/RecentPaths/=C_003A_005CUsers_005Cxdaff_005CDocuments_005CGitHub_005Ccs2_002DWeaponPaints_005C3rd_005Fparty_005CMenuManagerApi_002Edll/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
||||
<s:Boolean x:Key="/Default/AddReferences/RecentPaths/=C_003A_005CUsers_005Cxdaff_005CDocuments_005CGitHub_005Ccs2_002DWeaponPaints_005C3rd_005Fparty_005CMenuManagerApi_002Edll/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACBaseAnimGraph_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fedce4cda20b83aa28fbed15b81eb0eda1753e497144879a4bd754947d37639_003FCBaseAnimGraph_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACBaseEntity_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fdd25ac51dad807865e0d135626a4fd984d63a388bf0c3285f9d7d7db9c1071_003FCBaseEntity_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACBodyComponent_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fdb7e149cad83cf211ee55349a3442256ec62acce5ba41474ad124572f767e271_003FCBodyComponent_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACCSPlayerController_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fab13f7aee75d35b3ec314a3fd92a24c4c0126cef65a8dda49bd83da5a2a77443_003FCCSPlayerController_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACCSPlayerController_005FInventoryServices_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fff255772feb17b2ef53224c45249eee339ad7148e2b42bb1afad71bd57d02b69_003FCCSPlayerController_005FInventoryServices_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACGameSceneNode_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003F343a4f176a269193769d7fd81231808c83529cab0f6c98fd96eb77f558974_003FCGameSceneNode_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ACModelState_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fb03ffa24c03867c84b5d095397bd1578b8ea563ab2c72b30242ffad815d49e_003FCModelState_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AListeners_002Eg_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fdbb2ccedd8f0b227a69f9ef0b434aa5a70b83e93bf1eac4cd91a31b7985efd4_003FListeners_002Eg_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ANetworkedVector_002Ecs_002Fl_003AC_0021_003FUsers_003Fxdaff_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fd68dbf9c04bc6046e155f1866c3615a47e34017f330c9e351d68979b9281c_003FNetworkedVector_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "„Проклетият въоръжен“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Боровинковата Сачма“ | ТЮЛЕН НСВК"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„Два пъти“ Маккой | ТПКВС кавалерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Командир Мае „Мъртвешки хладната“ Джеймисън | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "I лейтенант Фарлоу | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "Джон „Ван Хийлън“ Каск | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Специалист по биологични опасности | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Сержант „Бомбсън“ | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Специалист по химични опасности | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Резан „Червеноризецът“ | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Сър „Проклетото Маями“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "„Касоразбивачът“ Волцман | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "„Малкият“ Кев | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "„Бегълката“ Сали | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Номер „К“ | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Сър „Проклетият мълчалив“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Сър „Проклетият черепоглав“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Сър „Проклетият роялист“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Сър „Проклетият гръмогласен“ Даръл | Професионалистите"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Младши лейтенант медик | Национална жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Капитан на екипа за химични опасности | Национална жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Ескадронна ръководителка Рушард | Национална жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Кандидат | Национална жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Офицер Жак Белтрам | Национална жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Лейтенант „Природосъобразната“ Фарлоу | СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Командир Давида „Очиларката“ Фернандез | Леководолаз ТЮЛЕН"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Командир Франк „Мокри чорапи“ Баруд | Леководолаз ТЮЛЕН"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Лейтенант Рекс Крайки | Леководолаз ТЮЛЕН"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Елитният трапер Солман | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Красуотър „Забравеният“ | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Арно „Надрасналия“ | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Полк. Мангос Дабиси | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Сестрата „Пепелянка“ от революцията | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Трапер агресор | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Средно опечен“ Красуотър „Забравеният“ | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Трапер | Партизанско военно дело"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Приземен бунтовник | Елитно подразделение"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Озирис | Елитно подразделение"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Проф. Шахмат | Елитно подразделение"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Елитният г-н Мухлик | Елитно подразделение"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Джунглов бунтовник | Елитно подразделение"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Войник | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Изпълнител | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Прашката | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Уличен боец | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Оператор | ФБР СОТ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Маркъс Делроу | ФБР ЕСЗ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Майкъл Сайфърс | ФБР снайперист"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Специален агент Ава | ФБР"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Командос от III рота | КСС"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Войник от „Тюлени екип 6“ | ТЮЛЕН НСВК"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Сачмата | ТЮЛЕН НСВК"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„Два пъти“ Маккой | ВВС ТПКВС САЩ"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Подполковник Рикшоу | ТЮЛЕН НСВК"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Старши лейтенант | I бразилски батальон"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Драгомир | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Максимус | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Резан „Навитакът“ | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Черният вълк | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "„Докторът“ Романов | Сабя"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Драгомир | Сабя — обикновен войник"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Офицер от ескадрила „B“ | САС"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Офицер на ескадрон Д | НЗСАС"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Blueberries“ Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„Two Times“ McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae „Dead Cold“ Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John „Van Healen“ Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant „Tree Hugger“ Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida „Goggles“ Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank „Wet Sox“ Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Medium Rare“ Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„Two Times“ McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "„The Doctor“ Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "\\\"Blueberries\\\" Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae \\\"Dead Cold\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergent Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerillakrigerne"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerillakrigerne"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerillakrigerne"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldat | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI-finskytte"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Orlogskaptajn Ricksaw, NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "\\\"The Doctor\\\" Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre-fodsoldat"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Mittelloser grausamer Darryl | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Blaubeeren“ Schrotkugel | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„ZweiMal“ McCoy | TACP-Kavallerie"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Kdr. Mae „Eiskalt“ Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Oberleutnantin Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John „Van Healen“ Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Spezialist für biologische Gefahren | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Feldwebel Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Spezialist für chemische Gefahren | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan das Rothemd | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Grausamer Miami-Darryl | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Panzerknackerin Voltzmann | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Klein Kev | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Schlüpfrige Sally | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Nummer K | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Grausamer Stiller Darryl | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Grausamer Schädelkopf-Darryl | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Grausamer Darryl Royale | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Grausamer Schreihals-Darryl | Die Profis"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant des militärischen Sanitätsdienstes | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitaine für chemische Gefahren | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Anwärter | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officier Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Leutnant „Baumkuschler“ Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Kommandantin Davida „Taucherbrille“ Fernandez | SEAL-Kampfschwimmerin"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Kommandant Frank „Nasse Socke“ Baroud | SEAL-Kampfschwimmer"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Leutnant Rex Krikey | SEAL-Kampfschwimmer"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elitetrapper Solman | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Krasswasser der Vergessene | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno der Überwachsene | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Oberst Mangos Dabisi | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista der Revolution | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper-Aggressor | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Halb durchgebraten“ Krasswasser | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Bodenrebell | Elitetruppe"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elitetruppe"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elitetruppe"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Die Elite Herr Muhlik | Elitetruppe"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Dschungelrebell | Elitetruppe"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldat | Phönix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Vollstrecker | Phönix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Schleuderer | Phönix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Straßensoldat | Phönix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI-SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI-Geiselrettungsgruppe"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI-Scharfschütze"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3. Kommandokompanie | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "SEAL Team 6 Soldat | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Schrotkugel | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„ZweiMal“ McCoy | USAF-TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | 1. Brasilianisches Bataillon"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan, der Bereite | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "„Doktor“ Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre-Fußsoldat"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Offizier der Staffel D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl – Ο Πανί με Πανί | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "«Μπλε βατόμουρα» Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "«Δυο Φορές» McCoy | Ιππικό TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Δκτης Mae «Νεκρό Ψύχος» Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1η Υπολοχαγός Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John «Van Healen» Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Ειδικός βιολογικών κινδύνων | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Λοχίας Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Ειδικός χημικών κινδύνων | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Κοκκινοπουκάμισος Rezan | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Darryl – Μαϊάμι | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Διαρρήκτης Voltzmann | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Μικρός Kev | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Δραπέτης Sally | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Αριθμός K | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Darryl – Σιωπηλός | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Darryl – Νεκροκεφαλή | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl – Βασιλικός | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Darryl – Φωνακλάς | Οι Επαγγελματίες"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Δόκιμος | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Αξιωματικός Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Υπολοχαγός «Οικολόγος» Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Δκτης Davida «Μάσκα» Fernandez | Βατραχάνθρωπος SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Δκτης Frank «Υγρές Κάλτσες» Baroud | Βατραχάνθρωπος SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Υπολοχαγός Rex Krikey | Βατραχάνθρωπος SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Ειδικός Παγιδευτής Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater – O Ξεχασμένος | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno το Θηρίο | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Σχης Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista της Επανάστασης | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Επιδρομέας Παγιδευτής | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "Crasswater – Μπαρουτοκαπνισμένος | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Παγιδευτής | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Elite Κύριος Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Επαναστάστης Ζούγκλας | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Στρατιώτης δρόμου | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Στρατιώτης Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Αξιωματικός Μοίρας Β | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Αξιωματικός Μοίρας Δ | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Sr. Bloody Darryl «el Preparado» | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "Buckshot «Arándanos» | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "«Dos veces» McCoy | TACP de la Caballería"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Comandante Mae «Frío mortal» Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Teniente Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John «Van Healen» Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Especialista en riesgos biológicos | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sargento Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Especialista en químicos | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan «el Camisa roja» | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sr. Bloody «Miami» Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Voltzmann «Revienta cajas» | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Pequeño Kev | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Sally «la Fugitiva» | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Número K | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sr. Bloody «Silencioso» Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sr. Bloody «Calavera» Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sr. Bloody «Real» Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sr. Bloody «Bocazas» Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Subteniente médico | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitán Chem-Haz | Gendarmería Nacional"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Jefa de escuadrón Rouchard | Gendarmería Nacional"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirante | Gendarmería Nacional"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Oficial Jacques Beltram | Gendarmería Nacional"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Teniente «Abrazaárboles» Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cte. Davida «Gafas de bucear» Fernández | Buzo de los SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cte. Frank «Muermazo» Baroud | Buzo de los SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Teniente Rex Krikey | Buzo de los SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Trampero de élite Solman | Guerrilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater, el olvidado | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno el gigante | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista de la Revolución | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trampero agresor | Guerrilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "«Poco hecho» Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trampero | Guerrilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Rebelde de campo | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Rebelde de jungla | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldado | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Ejecutor | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Soldado callejero | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Agente de operaciones | SWAT del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | HRT del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Francotirador del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agente especial Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3.ª Compañía de Comandos | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Soldado del 6.º Equipo SEAL | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "«Dos veces» McCoy | TACP de la USAF"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Capitán de corbeta Ricksaw | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro tenente | 1.er batallón brasileño"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan «el Preparado» | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "El «Doctor» Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Soldado de infantería de Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Oficial del Escuadrón B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Oficial del Escuadrón D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Sr. Bloody Darryl El Preparado | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "Buckshot \\\"Arándanos\\\" | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Dos veces\\\" McCoy | TACP de la USAF"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmte. Mae \\\"Frío Mortal\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Teniente Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Especialista en riesgos biológicos | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sargento Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Especialista en riesgos químicos | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan \\\"the Redshirt\\\" | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sr. Bloody Miami Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sr. Bloody Silent Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sr. Bloody Skullhead Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sr. Bloody Darryl Royale | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sr. Bloody Loudmouth Darryl | Los Profesionales"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Segundo teniente médico | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitán de riesgos químicos | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Jefa de escuadrón Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirante | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Oficial Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Teniente \\\"Abrazatroncos\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Comandante Davida \\\"Gafas de buceo\\\" Fernandez | Submarinista SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Comandante Frank \\\"Calcetines mojados\\\" Baroud | Submarinista SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Teniente Rex Krikey | Submarinista SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Trampero de élite Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater, el Olvidado | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno el Gigante | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Coronel Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista de la Revolución | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trampero agresor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "\\\"Término Medio\\\" Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trampero | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Rebelde de jungla | Unidad de élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldado | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Sicario | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Soldado callejero | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operador | SWAT del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | HRT del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Francotirador del FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agente especial Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3.ª Compañía de Comandos | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Soldado del 6.º Equipo SEAL | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "Dos Veces McCoy | TACP de la USAF"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Capitán de corbeta Ricksaw | SEAL del NSWC"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | 1.er batallón brasileño"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan el Presto | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "El Doctor Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Soldado de infantería Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Oficial del Escuadrón B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Oficial del Escuadrón D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "\\\"Blueberries\\\" Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | TACP-ratsuväki"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Komentaja Mae \\\"Dead Cold\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Ensimmäinen luutnantti Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Biologisten aseiden spesialisti | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Kersantti Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Kemiallisten aseiden spesialisti | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | Ammattilaiset"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Vänrikki, lääkintämies | Ranskan kansallinen santarmisto"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Kemiallisten aseiden kapteeni | Ranskan kansallinen santarmisto"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Majuri Rouchard | Ranskan kansallinen santarmisto"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Kokelas | Ranskan kansallinen santarmisto"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Upseeri Jacques Beltram | Ranskan kansallinen santarmisto"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Luutnantti \\\"Tree Hugger\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Komentajakapteeni Davida \\\"Goggles\\\" Fernandez | SEAL-sammakkomies"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Komentajakapteeni Frank \\\"Wet Sox\\\" Baroud | SEAL-sammakkomies"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Luutnantti Rex Krikey | SEAL-sammakkomies"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Eliittisieppaaja Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Eversti Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vallankumouksen Vypa Sista | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Sieppaajien iskujoukko | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "\\\"Medium Rare\\\" Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Sieppaaja | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Kapinallinen | Eliittijoukko"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Eliittijoukko"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Eliittijoukko"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Eliittijoukko"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Viidakkokapinallinen | Eliittijoukko"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Sotilas | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Kurinpitäjä | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Katutaistelija | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operaattori | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI:n tarkka-ampuja"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Erikoisagentti Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3. kommandokomppania | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "SEAL Team 6:n sotilas | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Komentajakapteeni Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brasilian 1. pataljoona"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "\\\"The Doctor\\\" Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabren jalkaväkisotilas"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B-joukkueen johtaja | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D-joukkueen upseeri | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Darryl « p… de fauché » | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "Chevrotine « Myrtille » | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "McCoy « Doublette » | Cavalerie du TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "CF Mae « Sang-froid » Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1ʳᵉ lieutenante Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John « Van Healen » Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Spécialiste des risques biologiques | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergent Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Spécialiste des risques chimiques | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan la chemise rouge | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Monsieur « p… de Miami » Darryl | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Voltzmann « craque-coffre » | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Petit Kev | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Sally l'escampette | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Nombre K | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Monsieur « p… de silence » Darryl | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Monsieur « p… de tête de mort » Darryl | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Monsieur « p… » Darryl royal | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Monsieur « p… de grande gueule » Darryl | Les Pros"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Infirmier sous-lieutenant | Gendarmerie nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitaine des risques chimiques | Gendarmerie nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Cheffe d'escadron Rouchard | Gendarmerie nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officier Jacques Beltram | Gendarmerie nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant Farlow l'Écolo | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Commandante Davida Fernandez les Lunettes | Nageuse de combat des SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Commandant Frank Baroud la Chaussette mouillée | Nageur de combat des SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | Nageur de combat des SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Trappeur d'élite Solman | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater l'Oublié | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno l'Exubérant | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Colonel Mangos Dabisi | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa, sœur de la révolution | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trappeur-agresseur | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "Crasswater « saignant » | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trappeur | Guérilla"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Rebelle de terrain | Unité d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Unité d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Pr Shahmat | Unité d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Chef d'élite M. Muhlik | Unité d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Rebelle de la jungle | Unité d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldat | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Homme de main | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Le survivaliste | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Soldat de rue | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Opérateur | SWAT du FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | Équipe de secours d'otages du FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Sniper du FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agente spéciale Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Soldat de la 3ᵉ compagnie de commandos | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Soldat de la Seal Team 6 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Chevrotine | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "McCoy « doublette » | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lieutenant-commandant Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro-Tenente | 1ᵉʳ bataillon brésilien"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan toujours prêt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "Le « docteur » Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | fantassin du Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Officier de l'escadron B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Unité de l'escadron D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "„Francos Szíjas” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Áfonya” Őzsörét | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„Duplán” McCoy | TACP lovasság"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Mae „Jéghideg” Jamison parancsnok | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Farlow főhadnagy | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John „Van Healen” Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Biológiai vészhelyzeti specialista | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Bombson őrmester | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Vegyi vészhelyzeti specialista | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Vörösinges Rezan | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir „Francos Miami” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Mackós Voltzmann | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Kicsi Kev | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Télak Sally | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "K Számjegy | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir „Francos Szótlan” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir „Francos Koponya” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir „Francos Király” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir „Francos Nagyszájú” Darryl | A Hivatásosok"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "„Faölelő” Farlow hadnagy | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Davida „Kukker” Fernandez alezredes | SEAL búvár"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Frank „Nedves Zokni” Baroud alezredes | SEAL búvár"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Rex Krikey százados | SEAL búvár"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Solman, elit trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater, az Elfelejtett | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno, a Túlméretes | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Mangos Dabisi ezredes | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa, a Forradalom Nővére | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Támadó trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Közepesen Nyers” Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Helyi felkelő | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Ozirisz | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Shahmat professzor | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Mr. Muhlik, az Elit | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Dzsungelfelkelő | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Katona | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Végrehajtó | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Csúzli | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Utcai harcos | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Ügynök | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI mesterlövész"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Ava különleges ügynök | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3. kommandós század | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 katona | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Őzsörét | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„Duplán” McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Ricksaw őrnagy | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazíliai 1. zászlóalj"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan, a Felkészült | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Fekete Farkas | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "Romanov, a „Doktor” | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre gyalogos"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "A B osztag tisztje | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "A D Osztag tisztje | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl Lo squattrinato | I Professionisti"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "Buckshot \\\"Mirtilli\\\" | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Doppietta\\\" McCoy | Cavalleria TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Com. Mae \\\"Freddo cane\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Primo tenente Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Specialista in rischi biologici | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergente Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Specialista in rischi chimici | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan Maglia rossa | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody \\\"Miami\\\" Darryl | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Voltzmann la Scassinatrice | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Sally l'Imprevedibile | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Numero K | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody \\\"Quieto\\\" Darryl | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody \\\"Teschio\\\" Darryl | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Reale | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody \\\"Lingua lunga\\\" Darryl | I professionisti"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Paramedico sottotenente | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitano Chem-Haz | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Comandante di squadrone Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirante | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Ufficiale Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Tenente \\\"Pollice verde\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Comandante Davida \\\"Occhialini\\\" Fernandez | Sommozzatore SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Comandante Frank \\\"Guastafeste\\\" Baroud | Sommozzatore SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Tenente Rex Krikey | Sommozzatore SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Esperto di trappole d'élite Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater il Dimenticato | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno il Gigante | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Sista Vypa della Rivoluzione | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Esperto di trappole aggressore | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "Crasswater \\\"al sangue\\\" | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Esperto di trappole | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ribelle di terra | Squadra d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Squadra d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Squadra d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Mr. Muhlik | Squadra d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Ribelle della giungla | Squadra d'élite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldato | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Sicario | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Soldato di strada | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operatore | SWAT FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Cecchino dell'FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agente speciale Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Soldato della 3ª compagnia Commando | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Soldato Seal Team 6 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "\\\"Doppietta\\\" McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Tenente Comandante Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | 1° battaglione brasiliano"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan sempre pronto | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "Romanov \\\"Il dottore\\\" | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Soldato Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Ufficiale Squadra B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Ufficiale squadra D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | エリートクルー"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | エリートクルー"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | エリートクルー"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | エリートクルー"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | エリートクルー"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI スナイパー"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "블러디 스트랩트 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'블루베리' 벅샷 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'투 타임스' 맥코이 | TACP 기갑 부대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "사령관 매 '데드 콜드' 재이미슨 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "팔로우 경위 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "존 '반 힐렝' 카스크 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "생물학전 전문 요원 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "밤슨 경사 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "화학전 전문 요원 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "레잔 더 레드셔츠 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "블러디 마이애미 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "금고 털이 볼츠만 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "리틀 케브 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "겟어웨이 샐리 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "넘버 K | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "블러디 사일런트 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "블러디 스컬헤드 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "블러디 로열 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "블러디 라우드마우스 대럴 경 | 전문가"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "의무대 소위 | 프랑스 헌병대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "화학전 전문팀 대위 | 프랑스 헌병대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "비행 중대 지휘관 루샤드 | 프랑스 헌병대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "후보생 | 프랑스 헌병대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "자크 벨트람 장교 | 프랑스 헌병대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "환경운동가 팔로우 경위 | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "사령관 다비다 '고글' 페르난데즈 | SEAL 잠수 부대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "사령관 프랭크 '웨트 삭스' 배라우드 | SEAL 잠수 부대"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "렉스 크리키 소위 | SEAL 잠수 부대"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "엘리트 트래퍼 솔만 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "크래스워터 더 폴갓튼 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "아르노 더 오버그로운 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "만고스 다비시 대령 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "혁명의 비파 시스타 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "트래퍼 어그레서 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "크래스워터 미디엄 레어 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "트래퍼 | 게릴라군"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "지상 저항군 | 엘리트 크루"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "오시리스 | 엘리트 크루"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "샤맷 교수 | 엘리트 크루"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "엘리트 미스터 마할리크 | 엘리트 크루"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "정글 저항군 | 엘리트 크루"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "병사 | 피닉스"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "집행자 | 피닉스"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "슬링샷 | 피닉스"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "갱단 조직원 | 피닉스"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "오퍼레이터 | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "마커스 델로우 | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "마이클 사이퍼스 | FBI 저격수"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "특수 요원 아바 | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "제3특전대 | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "SEAL Team 6 병사 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "벅샷 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'투 타임스' 맥코이 | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "릭소 소령 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "프리메이로 테넨테 | 브라질군 1대대"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "드라고미르 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "막시무스 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "레잔 더 레디 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "블랙울프 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "닥터 로마노프 | 사브르"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "드라고미르 | 사브르 보병"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B 비행 중대 장교 | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D 비행 중대 장교 | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL-frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldaat | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "«Blueberries» Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "«Two Times» McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae «Dead Cold» Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John «Van Healen» Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant «Tree Hugger» Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida «Goggles» Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank «Wet Sox» Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "«Medium Rare» Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "«Two Times» McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "«The Doctor» Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Cholerny Darryl – spłukany | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Borówkowy” Śrut | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„Dublet” McCoy | Kawaleria TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Dowodząca Mae „Zimny trup” Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Porucznik Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John „Van Healen” Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Specjalista od zagrożeń biologicznych | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sierżant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Specjalista od zagrożeń chemicznych | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan Czerwona Koszula | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Cholerny Darryl – Miami | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Włamywaczka Voltzmann | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Mały Kev | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Bezszwankowa Sally | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Numer K | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Cholerny Darryl – cichy | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Cholerny Darryl – czaszka | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Cholerny Darryl – królewski | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Cholerny Darryl – pyskacz | Profesjonaliści"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Medyk w stopniu podporucznika | Francuska Żandarmeria Narodowa"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Kapitan zespołu ds. zagrożeń biologicznych | Francuska Żandarmeria Narodowa"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Dowódczyni oddziału Rouchand | Francuska Żandarmeria Narodowa"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Francuska Żandarmeria Narodowa"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Oficer Jacques Beltram | Francuska Żandarmeria Narodowa"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Porucznik „Ekolog” Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Komandor Davida „Gogle” Fernandez | Płetwonurek SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Komandor Frank „Mokra skarpeta” Baroud | Płetwonurek SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Porucznik Rex Krikey | Płetwonurek SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elitarny traper Solman | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater Zapomniany | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno Przerośnięty | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Płk Mangos Dabisi | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa, Siostra Rewolucji | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Traper-agresor | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Średnio krwisty” Crasswater | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Traper | Partyzantka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Rebeliant-piechur | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Ozyrys | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Elitarny pan Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Tropikalny rebeliant | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Żołnierz | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Egzekutor | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Miotacz | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Żołnierz uliczny | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Snajper FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agentka specjalna Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Żołnierz 3 Kompanii Komandosów | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Żołnierz Seal Team 6 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Śrut | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„Dublet” McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Kmdr ppor. Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Porucznik | Brazylijski 1 Batalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan Przygotowany | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Czarny Wilk | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "„Doktor” Romanow | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Piechur Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Oficer szwadronu B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Oficer szwadronu D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Darryl Sangrento Sem Grana | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "Chumbinho \\\"Azulão\\\" | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "McCoy (\\\"Duas Vezes\\\") | Cavalaria do TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Comte. Mae \\\"Frio Mortal\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Primeiro-tenente Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Sepulcura\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Especialista em Risco Biológico | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sargento Bombinha | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Especialista em Risco Químico | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan, o Camisa Vermelha | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sr. Darryl Sangrento de Miami | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Voltzmann Quebra-Cofres | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Kevinho | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Sally Sumiço | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Número K | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sr. Darryl Sangrento Silencioso | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sr. Darryl Sangrento Caveirinha | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sr. Darryl Sangrento Real | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sr. Darryl Sangrento Falastrão | Os Profissionais"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Médico Primeiro-Tenente | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Capitão de Risco | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chefe de Esquadra Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirante | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Oficial Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Primeiro-Tenente \\\"Abraçador de Árvores\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Comandante Davida \\\"Óculos\\\" Fernandez | Mulher-Rã da SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Comandante Frank \\\"Abelhudo\\\" Baroud | Homem-Rã da SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Tenente Rex Krikey | Homem-Rã da SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Caçador de Elite Solman | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater, o Esquecido | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno, o Eremita | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Coronel Mangos Dabisi | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa, Irmã da Revolução | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Caçador Agressivo | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "Crasswater \\\"Ao Ponto\\\" | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Caçador | Guerrilheiros"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Rebelde de Campo | Equipe de Elite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osíris | Equipe de Elite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Equipe de Elite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Sr. Muhlik de Elite | Equipe de Elite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Rebelde Florestal | Equipe de Elite"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldado | Fênix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Executor | Fênix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Faquinha | Fênix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Soldado de Rua | Fênix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operador | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | Franco-atirador do FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Agente Especial Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Companhia do 3º Comando | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Soldado da Equipe SEAL 6 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Chumbinho | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "McCoy (\\\"Duas Vezes\\\") | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Tenente-Comandante Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro-Tenente | 1º Batalhão Brasileiro"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan, o Preparado | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Lobo Negro | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "\\\"Doutor\\\" Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Soldado da Sabre"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Sargento do Esquadrão B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Sargento do Esquadrão D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "\\\"Blueberries\\\" Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae \\\"Dead Cold\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant \\\"Tree Hugger\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida \\\"Goggles\\\" Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank \\\"Wet Sox\\\" Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "\\\"Medium Rare\\\" Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "\\\"Two Times\\\" McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "\\\"The Doctor\\\" Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "„Blueberries” Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "„Two Times” McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae „Dead Cold” Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John „Van Healen” Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant „Tree Hugger” Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida „Goggles” Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank „Wet Sox” Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "„Medium Rare” Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "„Two Times” McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "„The Doctor” Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Сэр «Чёртовы ремни» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "«Черничный» Бакшот | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "«Дважды» Маккой | Кавалерия TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Коммандер Мэй «Льдина» Джемисон | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Старший лейтенант Фарлоу | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "Джон «Ван Лечитт» Каск | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Специалист по биозащите | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Сержант Бомбсон | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Специалист по химзащите | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Резан Красный | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Сэр «Чёртов Майами» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Взломщица Вольцманн | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Крошка Кев | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Беглянка Салли | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Номер К | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Сэр «Чёртов тихоня» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Сэр «Чёртов череп» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Сэр «Чёртова знать» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Сэр «Чёртов болтун» Дэррил | Профессионалы"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Второй лейтенант медслужбы | Национальная жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Капитан химзащиты | Национальная жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Коммандант Рушар | Национальная жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Кадет | Национальная жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Офицер Жак Белтрам | Национальная жандармерия"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Лейтенант «Лесник» Фарлоу | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Капитан Давида «Окуляры» Фернандес | Боевые пловцы SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Капитан Фрэнк «Мокрые носки» Бару | Боевые пловцы SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Лейтенант Рекс Крайки | Боевые пловцы SEAL"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Элитный охотник Солман | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Крэссуотер Забытый | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Переросток Арно | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Полковник Мангос Дабиси | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Вайпа, сестра революции | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Охотник-агрессор | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "Крэссуотер «Поджарый» | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Охотник | Партизаны"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Диверсант | Элитный отряд"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Осирис | Элитный отряд"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Профессор Шахмат | Элитный отряд"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Элитный мистер Мохлик | Элитный отряд"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Тропический диверсант | Элитный отряд"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Солдат | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Головорез | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Мясник | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Уличный солдат | Феникс"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Оперативник | ФБР: SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Маркус Делроу | ФБР: антитеррор"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Майкл Сайферс | ФБР: снайпер"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Особый агент Ава | ФБР"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Третья рота коммандо | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Солдат SEAL Team 6 | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Бакшот | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "«Дважды» Маккой | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Капитан 3-го ранга Риксоу | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Старший лейтенант | Первый батальон Бразилии"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Драгомир | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Максимус | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Резан Готовый | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Черноволк | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "«Доктор» Романов | Сабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Драгомир | Пехота «Сабли»"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Офицер отряда B | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Офицер отряда D | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sir Bloody Darryl Royale | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Meteliksiz Kanlı Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "\\\"Yaban Mersini\\\" Saçma | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "\\\"Çift Dikiş\\\" McCoy | TACP Süvarisi"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Bnb. Mae \\\"Donuk\\\" Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Üsteğmen Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John \\\"Van Healen\\\" Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Biyolojik Tehlike Uzmanı | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Başçavuş Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Kimyasal Tehlike Uzmanı | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Kırmızı Gömlek Rezan | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sör Kanlı Miami Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Kasa Hırsızı Voltzmann | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Küçük Kev | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Doğaçlama Ustası Sally | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Sayı K | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sör Kanlı Sessiz Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sör Kanlı Kurukafa Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Sör Kanlı Royale Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sör Kanlı Geveze Darryl | Profesyoneller"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officier Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Üsteğmen \\\"Ağaç Sevici\\\" Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Bnb. Davida \\\"Gözlük\\\" Fernandez | SEAL Kurbağa Adamı"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Bnb. Frank \\\"Islak Çorap\\\" Baroud | SEAL Kurbağa Adamı"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Üsteğmen Rex Krikey | SEAL Kurbağa Adamı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Seçkin Avcı Solman | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Unutulmuş Crasswater | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Azman Arno | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Albay Mangos Dabisi | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Devrimden Vypa Sista | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Saldırgan Avcı | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "\\\"Orta Pişmiş\\\" Crasswater | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Avcı | Gerilla Savaşı"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Saha Asisi | Seçkin Tayfa"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Seçkin Tayfa"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Şahmat | Seçkin Tayfa"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Seçkin Bay Muhlik | Seçkin Tayfa"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Orman Asisi | Seçkin Tayfa"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Asker | Anka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "İnfazcı | Anka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Sapan | Anka"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Sokak Askeri | Anka"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Ajan | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI Rehine Kurtarma Ekibi"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Keskin Nişancısı"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Özel Ajan Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3. Komando Bölüğü | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Askeri | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Saçma | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "\\\"Çift Dikiş\\\" McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Binbaşı Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brezilya 1. Taburu"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Becerikli Rezan | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Kara Kurt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "\\\"Doktor\\\" Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Askeri"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Bölüğü Subayı | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Bölüğü Subayı | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Деріл «Криваве Безгрошів’я» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "«Лохина» Бекшот | Морські котики"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "«Подвійний» Макой | Повітряна кавалерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Командер Мей «Стужа» Джеймісон | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "Перший лейтенант Ферлоу | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "Джон «Ван Меден» Каск | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Спеціаліст із біозахисту | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Сержант Бомбсон | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Спеціаліст із хімзахисту | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Резан «Червона Сорочка» | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Пан Деріл «Криваве Маямі» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Зламниця Вольцман | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Малюк Кев | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Утікачка Саллі | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Номер К | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Пан Деріл «Кривава Тиша» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Пан Деріл «Кривавий Череп» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "Пан Деріл «Кривава Величність» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Пан Деріл «Кривавий Крикун» | Професіонали"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Молодший лейтенант-медик | Національна жандармерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Капітан із хімічних загроз | Національна жандармерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Голова ескадрону Рушар | Національна жандармерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Аспірант | Національна жандармерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Офіцер Жак Бельтрам | Національна жандармерія"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Лейтенант «Екологія» Фарлоу | Тактичний спецзагін"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Командер Давіда «Окуляри» Фернандез | Морські котики-водолази"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Командер Френк «Мокра Шкарпетка» Баруд | Морські котики-водолази"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Лейтенант Рекс Крікі | Морські котики-водолази"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Елітний мисливець Солмен | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Кресвотер Забутий | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Арно Переросток | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Полковник Манґос Дабісі | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Вайпа, сестра Революції | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Агресивний мисливець | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "«Середньопросмажений» Кресвотер | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Мисливець | Партизани"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ґрунтовний повстанець | Елітна команда"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Осіріс | Елітна команда"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Професор Шахмет | Елітна команда"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "Елітний містер Махлик | Елітна команда"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Повстанець із джунглів | Елітна команда"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Солдат | Фенікс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Убивця | Фенікс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Різник | Фенікс"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Вуличний боєць | Фенікс"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Оперативник | Тактичний спецзагін ФБР"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Маркус Делроу | Команда ФБР із порятунку заручників"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Майкл Сайферс | Снайпер ФБР"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Спецагент Ава | ФБР"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "Командо з третьої роти | ССО Німеччини"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Морський котик із 6-ї команди | Морські котики"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Бекшот | Морські котики"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "«Подвійний» Макой | Повітряний контроль ВПС США"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Лейтенант-командер Ріксоу | Морські котики"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Старший лейтенант | Бразильський 1-й батальйон"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Драґомир | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Максимус | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Резан «Готовий» | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Чорний Вовк | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "«Доктор» Романов | Шабля"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Драґомир | Піхота «Шаблі»"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "Офіцер ескадрону Б | СПС"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "Офіцер ескадрону Д | СПС Нової Зеландії"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "Bloody Darryl The Strapped | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "'Blueberries' Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "'Two Times' McCoy | TACP Cavalry"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "Cmdr. Mae 'Dead Cold' Jamison | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "1st Lieutenant Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "John 'Van Healen' Kask | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "Bio-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "Sergeant Bombson | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "Chem-Haz Specialist | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "Rezan the Redshirt | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "Sir Bloody Miami Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "Safecracker Voltzmann | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "Little Kev | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "Getaway Sally | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "Number K | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "Sir Bloody Silent Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "Sir Bloody Skullhead Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "The Professionals | Sir Bloody Darryl"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "Sir Bloody Loudmouth Darryl | The Professionals"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "Sous-Lieutenant Medic | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "Chem-Haz Capitaine | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "Chef d'Escadron Rouchard | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "Aspirant | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "Officer Jacques Beltram | Gendarmerie Nationale"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "Lieutenant 'Tree Hugger' Farlow | SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "Cmdr. Davida 'Goggles' Fernandez | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "Cmdr. Frank 'Wet Sox' Baroud | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "Lieutenant Rex Krikey | SEAL Frogman"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "Elite Trapper Solman | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "Crasswater The Forgotten | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "Arno The Overgrown | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "Col. Mangos Dabisi | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "Vypa Sista of the Revolution | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "Trapper Aggressor | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "'Medium Rare' Crasswater | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "Trapper | Guerrilla Warfare"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "Ground Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "Osiris | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "Prof. Shahmat | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "The Elite Mr. Muhlik | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "Jungle Rebel | Elite Crew"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "Enforcer | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "Slingshot | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "Street Soldier | Phoenix"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "Operator | FBI SWAT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "Markus Delrow | FBI HRT"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "Michael Syfers | FBI Sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "Special Agent Ava | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "3rd Commando Company | KSK"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "Seal Team 6 Soldier | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "Buckshot | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "'Two Times' McCoy | USAF TACP"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "Lt. Commander Ricksaw | NSWC SEAL"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "Primeiro Tenente | Brazilian 1st Battalion"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "Dragomir | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "Maximus | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "Rezan The Ready | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "Blackwolf | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "'The Doctor' Romanov | Sabre"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "Dragomir | Sabre Footsoldier"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B Squadron Officer | SAS"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D Squadron Officer | NZSAS"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "残酷的达里尔(穷鬼)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "“蓝莓” 铅弹 | 海军水面战中心海豹部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "“两次”麦考伊 | 战术空中管制部队装甲兵"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "指挥官 梅 “极寒” 贾米森 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "第一中尉法洛 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "约翰 “范·海伦” 卡斯克 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "生物防害专家 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "军士长炸弹森 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "化学防害专家 | 特警"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "红衫列赞 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "残酷的达里尔爵士(迈阿密)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "飞贼波兹曼 | 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "小凯夫 | 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "出逃的萨莉 | 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "老K | 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "残酷的达里尔爵士(沉默)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "残酷的达里尔爵士(头盖骨)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "残酷的达里尔爵士(皇家)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "残酷的达里尔爵士(聒噪)| 专业人士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "军医少尉 | 法国宪兵特勤队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "化学防害上尉| 法国宪兵特勤队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "中队长鲁沙尔·勒库托 | 法国宪兵特勤队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "准尉 | 法国宪兵特勤队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "军官雅克·贝尔特朗 | 法国宪兵特勤队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "中尉法洛(抱树人) | 特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "指挥官黛维达·费尔南德斯(护目镜) | 海豹蛙人"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "指挥官弗兰克·巴鲁德(湿袜) | 海豹蛙人"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "中尉雷克斯·克里奇 | 海豹蛙人"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "精锐捕兽者索尔曼 | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "遗忘者克拉斯沃特 | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "亚诺(野草) | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "上校曼戈斯·达比西 | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "薇帕姐(革新派) | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "捕兽者(挑衅者) | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "克拉斯沃特(三分熟) | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "捕兽者 | 游击队"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "地面叛军 | 精锐分子"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "奥西瑞斯 | 精锐分子"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "沙哈马特教授 | 精锐分子"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "精英穆哈里克先生 | 精锐分子"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "丛林反抗者 | 精锐分子"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "枪手 | 凤凰战士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "执行者 | 凤凰战士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "弹弓 | 凤凰战士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "街头士兵 | 凤凰战士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "特种兵 | 联邦调查局(FBI)特警"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "马尔库斯·戴劳 | 联邦调查局(FBI)人质营救队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "迈克·赛弗斯 | 联邦调查局(FBI)狙击手"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "爱娃特工 | 联邦调查局(FBI)"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "第三特种兵连 | 德国特种部队突击队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "海豹突击队第六分队士兵 | 海军水面战中心海豹部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "铅弹 | 海军水面战中心海豹部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "“两次”麦考伊 | 美国空军战术空中管制部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "海军上尉里克索尔 | 海军水面战中心海豹部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "陆军中尉普里米罗 | 巴西第一营"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "德拉戈米尔 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "马克西姆斯 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "准备就绪的列赞 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "黑狼 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "“医生”罗曼诺夫 | 军刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "德拉戈米尔 | 军刀勇士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B 中队指挥官 | 英国空军特别部队"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D 中队军官 | 新西兰特种空勤团"
|
||||
}
|
||||
]
|
||||
@@ -10,383 +10,5 @@
|
||||
"image": "",
|
||||
"model": "null",
|
||||
"agent_name": "Agent | Default"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4613.png",
|
||||
"model": "tm_professional/tm_professional_varf5",
|
||||
"agent_name": "殘忍的窮鬼達洛 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4619.png",
|
||||
"model": "ctm_st6/ctm_st6_variantj",
|
||||
"agent_name": "「藍莓迷彩」獵鹿彈 | 海軍特種作戰司令部海豹部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4680.png",
|
||||
"model": "ctm_st6/ctm_st6_variantl",
|
||||
"agent_name": "「兩次」麥考伊 | 戰術空中管制部隊騎兵師"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4711.png",
|
||||
"model": "ctm_swat/ctm_swat_variante",
|
||||
"agent_name": "梅「冷若冰霜」傑米森中校 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4712.png",
|
||||
"model": "ctm_swat/ctm_swat_variantf",
|
||||
"agent_name": "法蘿中尉 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4713.png",
|
||||
"model": "ctm_swat/ctm_swat_variantg",
|
||||
"agent_name": "約翰「范.海倫」克斯克 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4714.png",
|
||||
"model": "ctm_swat/ctm_swat_varianth",
|
||||
"agent_name": "生物性危害專家 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4715.png",
|
||||
"model": "ctm_swat/ctm_swat_varianti",
|
||||
"agent_name": "炸彈森中士 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4716.png",
|
||||
"model": "ctm_swat/ctm_swat_variantj",
|
||||
"agent_name": "化學性危害專家 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4718.png",
|
||||
"model": "tm_balkan/tm_balkan_variantk",
|
||||
"agent_name": "紅衫瑞贊 | 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4726.png",
|
||||
"model": "tm_professional/tm_professional_varf",
|
||||
"agent_name": "血腥「邁阿密」戴爾爵士 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4727.png",
|
||||
"model": "tm_professional/tm_professional_varg",
|
||||
"agent_name": "保險箱竊賊渥茲曼 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4728.png",
|
||||
"model": "tm_professional/tm_professional_varh",
|
||||
"agent_name": "小凱文 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4730.png",
|
||||
"model": "tm_professional/tm_professional_varj",
|
||||
"agent_name": "「逃脫」莎莉 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4732.png",
|
||||
"model": "tm_professional/tm_professional_vari",
|
||||
"agent_name": "K 仔 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4733.png",
|
||||
"model": "tm_professional/tm_professional_varf1",
|
||||
"agent_name": "血腥「沉默」戴爾爵士 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4734.png",
|
||||
"model": "tm_professional/tm_professional_varf2",
|
||||
"agent_name": "血腥「骷髏頭」戴爾爵士 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4735.png",
|
||||
"model": "tm_professional/tm_professional_varf3",
|
||||
"agent_name": "血腥戴爾「至尊」爵士 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4736.png",
|
||||
"model": "tm_professional/tm_professional_varf4",
|
||||
"agent_name": "血腥「大嘴巴」戴爾爵士 | 專業人士"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4749.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_varianta",
|
||||
"agent_name": "少尉軍醫 | 法國憲兵特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4750.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantb",
|
||||
"agent_name": "危險化武上尉 | 法國憲兵特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4751.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantc",
|
||||
"agent_name": "盧查德少校 | 法國憲兵特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4752.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variantd",
|
||||
"agent_name": "准尉 | 法國憲兵特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4753.png",
|
||||
"model": "ctm_gendarmerie/ctm_gendarmerie_variante",
|
||||
"agent_name": "賈克貝特朗軍官 | 法國憲兵特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4756.png",
|
||||
"model": "ctm_swat/ctm_swat_variantk",
|
||||
"agent_name": "「抱樹者」法蘿中尉 | 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4757.png",
|
||||
"model": "ctm_diver/ctm_diver_varianta",
|
||||
"agent_name": "戴薇達「蛙鏡」法南德茲中校 | 美國海豹部隊蛙人"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4771.png",
|
||||
"model": "ctm_diver/ctm_diver_variantb",
|
||||
"agent_name": "法蘭克「濕襪」巴洛德中校 | 美國海豹部隊蛙人"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4772.png",
|
||||
"model": "ctm_diver/ctm_diver_variantc",
|
||||
"agent_name": "雷克斯克里基中尉 | 美國海豹部隊蛙人"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4773.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_varianta",
|
||||
"agent_name": "獵戰者菁英索爾曼 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4774.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb",
|
||||
"agent_name": "遭遺忘者克瑞斯沃特 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4775.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantc",
|
||||
"agent_name": "大壯亞諾 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4776.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantd",
|
||||
"agent_name": "曼戈斯達比西上校 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4777.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variante",
|
||||
"agent_name": "革命姊妹薇帕 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4778.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf",
|
||||
"agent_name": "獵戰者突擊手 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4780.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantb2",
|
||||
"agent_name": "「五分熟」克瑞斯沃特 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-4781.png",
|
||||
"model": "tm_jungle_raider/tm_jungle_raider_variantf2",
|
||||
"agent_name": "獵戰者 | 中東恐怖游擊隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5105.png",
|
||||
"model": "tm_leet/tm_leet_variantg",
|
||||
"agent_name": "地面反抗者 | 精銳部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5106.png",
|
||||
"model": "tm_leet/tm_leet_varianth",
|
||||
"agent_name": "歐西里斯 | 精銳部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5107.png",
|
||||
"model": "tm_leet/tm_leet_varianti",
|
||||
"agent_name": "沙赫馬特教授 | 精銳部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5108.png",
|
||||
"model": "tm_leet/tm_leet_variantf",
|
||||
"agent_name": "菁英穆哈里克先生 | 精銳部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5109.png",
|
||||
"model": "tm_leet/tm_leet_variantj",
|
||||
"agent_name": "叢林反抗者 | 精銳部隊"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5205.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianth",
|
||||
"agent_name": "槍手 | 鳳凰"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5206.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantf",
|
||||
"agent_name": "劊子手 | 鳳凰"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5207.png",
|
||||
"model": "tm_phoenix/tm_phoenix_variantg",
|
||||
"agent_name": "彈弓 | 鳳凰"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5208.png",
|
||||
"model": "tm_phoenix/tm_phoenix_varianti",
|
||||
"agent_name": "幫派份子 | 鳳凰"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5305.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantf",
|
||||
"agent_name": "特工 | FBI 特殊武裝突擊部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5306.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantg",
|
||||
"agent_name": "馬庫斯戴洛 | FBI 人質救援隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5307.png",
|
||||
"model": "ctm_fbi/ctm_fbi_varianth",
|
||||
"agent_name": "麥克賽法斯 | FBI 狙擊手"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5308.png",
|
||||
"model": "ctm_fbi/ctm_fbi_variantb",
|
||||
"agent_name": "特務艾娃 | FBI"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5400.png",
|
||||
"model": "ctm_st6/ctm_st6_variantk",
|
||||
"agent_name": "第三突擊兵連 | 德國特種部隊司令部"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5401.png",
|
||||
"model": "ctm_st6/ctm_st6_variante",
|
||||
"agent_name": "海豹六隊士兵 | 海軍特種作戰司令部海豹部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5402.png",
|
||||
"model": "ctm_st6/ctm_st6_variantg",
|
||||
"agent_name": "獵鹿彈 | 海軍特種作戰司令部海豹部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5403.png",
|
||||
"model": "ctm_st6/ctm_st6_variantm",
|
||||
"agent_name": "「兩次」麥考伊 | 美國空軍戰術空中管制部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5404.png",
|
||||
"model": "ctm_st6/ctm_st6_varianti",
|
||||
"agent_name": "瑞克紹少校 | 海軍特種作戰司令部海豹部隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5405.png",
|
||||
"model": "ctm_st6/ctm_st6_variantn",
|
||||
"agent_name": "第一中尉 | 巴西第一營"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5500.png",
|
||||
"model": "tm_balkan/tm_balkan_variantf",
|
||||
"agent_name": "德拉戈米爾 | 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5501.png",
|
||||
"model": "tm_balkan/tm_balkan_varianti",
|
||||
"agent_name": "麥西姆斯 | 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5502.png",
|
||||
"model": "tm_balkan/tm_balkan_variantg",
|
||||
"agent_name": "整裝待發瑞贊 | 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5503.png",
|
||||
"model": "tm_balkan/tm_balkan_variantj",
|
||||
"agent_name": "黑狼 | 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5504.png",
|
||||
"model": "tm_balkan/tm_balkan_varianth",
|
||||
"agent_name": "羅曼諾夫「醫生」| 軍刀"
|
||||
},
|
||||
{
|
||||
"team": 2,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5505.png",
|
||||
"model": "tm_balkan/tm_balkan_variantl",
|
||||
"agent_name": "德拉戈米爾 | 軍刀步兵"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5601.png",
|
||||
"model": "ctm_sas/ctm_sas_variantf",
|
||||
"agent_name": "B 中隊軍官 | 英國空降特勤隊"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/agent-5602.png",
|
||||
"model": "ctm_sas/ctm_sas_variantg",
|
||||
"agent_name": "D 中隊軍官 | 紐西蘭空降特勤隊"
|
||||
}
|
||||
]
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Четвъртфиналист от BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Пропуск за операция „Разплата“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Монета от предизвикателство в операция „Разплата“",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Монета за картата Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Пропуск за операция „Браво“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Монета от предизвикателство в операция „Браво“",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Монета за картата Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Пропуск за операция „Феникс“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Монета от предизвикателство в операция „Феникс“",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Златна монета от операция „Феникс“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Пропуск за пълен достъп в операция „Пробив“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Монета от предизвикателство в операция „Пробив“",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Монета за картата Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Пропуск за достъп в операция „Авангард“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Монета от предизвикателство в операция „Авангард“",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Златна монета от операция „Авангард“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Пропуск за достъп в операция „Хрътка“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Монета от предизвикателство в операция „Хрътка“",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Медал за служба 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Пропуск за достъп в операция „Опустошителен огън“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Монета от предизвикателство в операция „Опустошителен огън“",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Медал за служба 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Пропуск за достъп в операция „Хидра“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Медал за служба 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Диамантена монета от операция „Хидра“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Премиум пропуск за операция „Разбита мрежа“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Монета от предизвикателство в операция „Разбита мрежа“",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Диамантена монета от операция „Разбита мрежа“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 монета",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 монета",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 сувенирен жетон",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медал за служба 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Значка „Град 17“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Премиум пропуск за операция „Счупен зъб“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Монета от предизвикателство в операция „Счупен зъб“",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Медал за служба 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Премиум пропуск за операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Монета от предизвикателство в операция „Коварно течение“",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Диамантена монета от операция „Коварно течение“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 монета",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 сувенирен жетон",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Медал за служба 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Медал за служба 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 монета",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 сувенирен жетон",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 монета",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 сувенирен жетон",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Медал за служба 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Медал за служба 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 монета",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 сувенирен жетон",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Медал за служба 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Медал за служба 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 монета",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 сувенирен пакет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Шампион от PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Медал за служба 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 монета",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 сувенирен пакет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Шампион от Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 сребърна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 златна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 сувенирен пакет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Шампион от BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Финалист от BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Полуфиналист от BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Четвъртфиналист от BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета за картата Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета за картата Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета за картата Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета за картата Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета за картата Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Монета за картата Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Монета за картата Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Монета за картата Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Монета за картата (ЗАЛИЧЕНО)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 зрителски пропуск",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 сребърна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 златна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 зрителски пропуск + 3 сувенирни жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 сувенирен пакет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Шампион от StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Финалист от StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Полуфиналист от StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Четвъртфиналист от StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Медал за служба 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Автентичен Значка за Dust II",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Čtvrtfinalista šampionátu BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Vstupenka do operace Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Mince za operaci Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Mince mapy Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Vstupenka do operace Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Mince za operaci Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Mince mapy Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Vstupenka do operace Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Mince za operaci Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Zlatá mince za operaci Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Vstupenka do operace Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Mince za operaci Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Mince mapy Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Vstupenka do operace Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Mince za operaci Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Zlatá mince za operaci Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Vstupenka do operace Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Mince za operaci Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medaile Za zásluhy (2015)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Vstupenka do operace Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Mince za operaci Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medaile Za zásluhy (2016)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Vstupenka do operace Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medaile Za zásluhy (2017)",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamantová mince za operaci Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Prémiová vstupenka do operace Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Mince za operaci Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamantová mince za operaci Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Vstupenka | IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Mince šampionátu IEM Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamantová mince šampionátu IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Vstupenka | StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Mince šampionátu StarLadder Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamantová mince šampionátu StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Žeton suvenýru | StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medaile Za zásluhy (2020)",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17 Pin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Prémiová vstupenka do operace Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Mince za operaci Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medaile Za zásluhy (2021)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Prémiová vstupenka do operace Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Mince za operaci Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamantová mince za operaci Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Vstupenka | PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mince šampionátu PGL Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamantová mince šampionátu PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Žeton suvenýru | PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medaile Za zásluhy (2022)",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medaile Za zásluhy (2022)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Vstupenka | PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Mince šampionátu PGL Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamantová mince šampionátu PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Žeton suvenýru | PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Vstupenka | IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Mince šampionátu IEM Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamantová mince šampionátu IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Žeton suvenýru | IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medaile Za zásluhy (2023)",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medaile Za zásluhy (2023)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Vstupenka | BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Mince šampionátu BLAST.tv Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamantová mince šampionátu BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Žeton suvenýru | BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medaile Za zásluhy (2024)",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medaile Za zásluhy (2024)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Vstupenka | PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Mince šampionátu PGL Copenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Diamantová mince šampionátu PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Suvenýr | PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Vítěz šampionátu PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medaile Za zásluhy (2025)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Vstupenka | Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Mince šampionátu Perfect World Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Diamantová mince šampionátu Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Suvenýr | Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Vítěz šampionátu Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Vstupenka | BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Stříbrná mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Zlatá mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantová mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Suvenýr | BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vítěz šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Čtvrtfinalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Mince mapy Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Mince mapy Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Mince mapy Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Mince mapy Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Mince mapy Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Mince mapy Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Mince mapy Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Mince mapy Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Mince mapy (Cenzurováno)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Vstupenka | StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Mince šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Stříbrná mince šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Zlatá mince šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamantová mince šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Vstupenka + 3 žetony suvenýrů | StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Suvenýr | StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Vítěz šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalista šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Čtvrtfinalista šampionátu StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medaile čtvrté sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medaile Za zásluhy (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Mince mapy Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Mince mapy Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Mince mapy Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Mince mapy Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Mince mapy Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznak Dust II (Genuine)",
|
||||
|
||||
@@ -531,7 +531,7 @@
|
||||
},
|
||||
{
|
||||
"id": "983",
|
||||
"name": "Mester ved PGL Antwerp 2022",
|
||||
"name": "Vinder af PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-983.png"
|
||||
},
|
||||
{
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Kvartfinalist ved Blast.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operation Payback-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operation Payback-udfordringsmønt",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Banemønt: Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operation Bravo-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operation Bravo-udfordringsmønt",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Banemønt: Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operation Phoenix-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operation Phoenix-udfordringsmønt",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Guldmønt | Operation Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operation Breakout All Access-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operation Breakout-udfordringsmønt",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Banemønt: Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operation Vanguard-adgangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operation Vanguard-udfordringsmønt",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Guldmønt | Operation Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operation Bloodhound-adgangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operation Bloodhound-udfordringsmønt",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Tjenestemedalje 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operation Wildfire-adgangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operation Wildfire-udfordringsmønt",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Tjenestemedalje 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operation Hydra-adgangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Tjenestemedalje 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamantmønt | Operation Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Premiumpas til Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operation Shattered Web-udfordringsmønt",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamantmønt | Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019-seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Mønt: Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamantmønt: Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019-seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Mønt: Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamantmønt: Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019-souvenirpolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Tjenestemedalje 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17-knappenål",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Premiumpas til Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operation Broken Fang-udfordringsmønt",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Tjenestemedalje 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Premiumpas til Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operation Riptide-udfordringsmønt",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamantmønt | Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mønt: Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamantmønt: Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 – Seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021-souvenirpolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Tjenestemedalje 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Tjenestemedalje 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Mønt: Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamantmønt: Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Seerpas til Antwerp 2022 + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022-souvenirpolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Mønt: Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamantmønt: Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022-souvenirpolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Tjenestemedalje 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Tjenestemedalje 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Mønt: Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamantmønt: Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023-souvenirpolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Tjenestemedalje 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Tjenestemedalje 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024-seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Mønt: Copenhagen 2024",
|
||||
@@ -1619,9 +1759,19 @@
|
||||
"name": "Diamantmønt: Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024-souvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Mester ved PGL Copenhagen 2024",
|
||||
"name": "Vinder af PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4933.png"
|
||||
},
|
||||
{
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Tjenestemedalje 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024-seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Mønt: Shanghai 2024",
|
||||
@@ -1714,9 +1869,19 @@
|
||||
"name": "Diamantmønt: Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 – Souvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Mester ved Perfect World Shanghai 2024",
|
||||
"name": "Vinder af Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4974.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Sølvmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Guldmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025-souvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vinder af BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartfinalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Banemønt: Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Banemønt: Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Banemønt: Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Banemønt: Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Banemønt: Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Banemønt: Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Banemønt: Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Banemønt: Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Banemønt: (censureret)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 – Seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Mønt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Sølvmønt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Guldmønt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamantmønt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025-seerpas + 3 souvenirpoletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025-souvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Vinder ved StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist ved StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalist ved StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Kvartfinalist ved StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II-knappenål (Ægte)",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -589,6 +589,11 @@
|
||||
"name": "Προημιφιναλίστ στο BLAST.tv Παρίσι 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Πάσο επιχείρησης Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Νόμισμα χάρτη Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Πάσο επιχείρησης Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Νόμισμα χάρτη Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Πάσο επιχείρησης Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Χρυσό νόμισμα επιχείρησης Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Πάσο πλήρους πρόσβασης επιχείρησης Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Νόμισμα πρόκλησης Operation Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Νόμισμα χάρτη Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Πάσο πρόσβασης επιχείρησης Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Χρυσό νόμισμα επιχείρησης Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Πάσο πρόσβασης επιχείρησης Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Μετάλλιο υπηρεσίας 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Πάσο πρόσβασης επιχείρησης Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Νόμισμα πρόκλησης επιχείρησης Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Μετάλλιο υπηρεσίας 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Πάσο πρόσβασης επιχείρησης Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Μετάλλιο υπηρεσίας 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Αδαμάντινο νόμισμα επιχείρησης Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Πάσο Επιχείρησης Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Νόμισμα προκλήσεων Επιχείρησης Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Διαμαντένιο νόμισμα Επιχείρησης Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Πάσο θεατή - Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Νόμισμα Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Διαμαντένιο νόμισμα Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Πάσο θεατή - Βερολίνο 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Νόμισμα Βερολίνο 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Διαμαντένιο νόμισμα Βερολίνο 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Πάσο θεατή Βερολίνο 2019 + 3 Μάρκες σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Μάρκα σουβενίρ Βερολίνο 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Μετάλλιο υπηρεσίας 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Καρφίτσα Πόλης 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Premium πάσο επιχείρησης Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Νόμισμα προκλήσεων επιχείρησης Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Μετάλλιο Υπηρεσίας 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Επιχείρηση Riptide – Premium πάσο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Νόμισμα πρόκλησης Επιχείρησης Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Διαμαντένιο νόμισμα Επιχείρησης Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Πάσο Θεατή – Στοκχόλμη 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Νόμισμα Στοκχόλμη 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Διαμαντένιο Νόμισμα – Στοκχόλμη 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Πάσο Θεατή Στοκχόλμη 2021 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Μάρκα Σουβενίρ – Στοκχόλμη 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Μετάλλιο Υπηρεσίας 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Μετάλλιο Υπηρεσίας 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Πάσο Θεατή Αμβέρσα 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Νόμισμα Αμβέρσα 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Διαμαντένιο Νόμισμα Αμβέρσα 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Πάσο Θεατή Αμβέρσα 2022 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Μάρκα Σουβενίρ Αμβέρσα 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Πάσο Θεατή Ρίο 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Νόμισμα Ρίο 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Διαμαντένιο Νόμισμα Ρίο 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Πάσο Θεατή Ρίο 2022 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Μάρκα Σουβενίρ Ρίο 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Μετάλλιο Υπηρεσίας 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Μετάλλιο Υπηρεσίας 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Πάσο Θεατή Παρίσι 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Νόμισμα Παρίσι 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Διαμαντένιο Νόμισμα Παρίσι 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Πάσο Θεατή Παρίσι 2023 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Μάρκα Σουβενίρ Παρίσι 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Μετάλλιο Υπηρεσίας 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Μετάλλιο Υπηρεσίας 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Πάσο Θεατή Κοπεγχάγη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Νόμισμα Κοπεγχάγη 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Διαμαντένιο Νόμισμα Κοπεγχάγη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Πάσο Θεατή Κοπεγχάγη 2024 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Πακέτο Σουβενίρ Κοπεγχάγη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Πρωταθλητής στο PGL Κοπεγχάγη 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Μετάλλιο υπηρεσίας 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Πάσο Θεατή Σαγκάη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Νόμισμα Σαγκάη 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Διαμαντένιο Νόμισμα Σαγκάη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Πάσο Θεατή Σαγκάη 2024 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Πακέτο Σουβενίρ Σαγκάη 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Πρωταθλητής στο Perfect World Σαγκάη 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Πάσο Θεατή Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Ασημένιο Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Χρυσό Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Διαμαντένιο Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Πάσο Θεατή Όστιν 2025 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Πακέτο Σουβενίρ Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Πρωταθλητής στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Φιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Ημιφιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Προημιφιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Νόμισμα χάρτη Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Νόμισμα χάρτη Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Νόμισμα χάρτη Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Νόμισμα χάρτη Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Νόμισμα χάρτη Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Νόμισμα χάρτη Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Νόμισμα χάρτη Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Νόμισμα χάρτη Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Νόμισμα χάρτη [Αφαιρέθηκε]",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Πάσο Θεατή Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Νόμισμα Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Ασημένιο Νόμισμα Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Χρυσό Νόμισμα Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Διαμαντένιο Νόμισμα Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Πάσο Θεατή Βουδαπέστη 2025 + 3 Μάρκες Σουβενίρ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Πακέτο Σουβενίρ Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Πρωταθλητής στο StarLadder Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Φιναλίστ στο StarLadder Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Ημιφιναλίστ στο StarLadder Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Προημιφιναλίστ στο StarLadder Βουδαπέστη 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Μετάλλιο υπηρεσίας 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Νόμισμα χάρτη Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Νόμισμα χάρτη Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Νόμισμα χάρτη Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Νόμισμα χάρτη Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Νόμισμα χάρτη Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Καρφίτσα Dust II",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Quarterfinalist at BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operation Payback Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operation Payback Challenge Coin",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operation Bravo Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operation Bravo Challenge Coin",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operation Phoenix Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operation Phoenix Challenge Coin",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Gold Operation Phoenix Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operation Breakout All Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operation Breakout Challenge Coin",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operation Vanguard Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operation Vanguard Challenge Coin",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Gold Operation Vanguard Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operation Bloodhound Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operation Bloodhound Challenge Coin",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operation Wildfire Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operation Wildfire Challenge Coin",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operation Hydra Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 Service Medal",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamond Operation Hydra Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Operation Shattered Web Premium Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operation Shattered Web Challenge Coin",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamond Operation Shattered Web Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 Coin",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 Coin",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 Souvenir Token",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 Service Medal",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17 Pin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Operation Broken Fang Premium Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operation Broken Fang Challenge Coin",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Operation Riptide Premium Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operation Riptide Challenge Coin",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamond Operation Riptide Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Coin",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 Souvenir Token",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 Service Medal",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 Coin",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 Souvenir Token",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 Coin",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 Souvenir Token",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 Service Medal",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 Coin",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 Souvenir Token",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 Service Medal",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 Coin",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 Souvenir Package",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Champion at PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 Coin",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 Souvenir Package",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Champion at Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Silver Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Gold Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 Souvenir Package",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Champion at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quarterfinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(Redacted) Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 Silver Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 Gold Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 Viewer Pass + 3 Souvenir Tokens",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 Souvenir Package",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Champion at StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist at StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalist at StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Quarterfinalist at StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 Service Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Dust II Pin",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -589,6 +589,11 @@
|
||||
"name": "Cuartofinalista del BLAST.tv de París 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Pase de la Operación Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Moneda de desafío de la Operación Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Moneda del mapa Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Pase de la Operación Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Moneda de desafío de la Operación Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Moneda del Mapa Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Pase de la Operación Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Moneda de desafío de la Operación Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Moneda dorada de la Operación Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Pase de acceso total a la Operación Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Moneda de desafío de la Operación Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Moneda del mapa Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Pase de acceso a la Operación Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Moneda de desafío de la Operación Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Moneda dorada de la Operación Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Pase de acceso a la Operación Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Moneda de desafío de la Operación Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medalla de Servicio de 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Pase de acceso a la Operación Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Moneda de desafío de la Operación Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medalla de Servicio de 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Pase de la Operación Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medalla de Servicio de 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Moneda de diamante de la Operación Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Pase prémium de la operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Moneda de desafío de la Operación Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Moneda de diamante de la Operación Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Pase de espectador de Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Moneda de Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Moneda de diamante de Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Pase de espectador de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Moneda de Berlín 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Moneda de diamante de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Pase de espectador para Berlín 2019 + 3 paquetes de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Ficha de recuerdo de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalla de Servicio de 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Pin de Ciudad 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Pase prémium de la Operación Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Moneda de desafío de la Operación Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medalla de servicio del 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Pase prémium de la operación Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Moneda de desafío de la Operación Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"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": "4796",
|
||||
"name": "Pase de espectador de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moneda de Estocolmo 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Moneda de diamante de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Pase de espectador de Estocolmo 2021 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Ficha de recuerdo de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medalla de Servicio de 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medalla de Servicio de 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Pase de espectador de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Moneda de Amberes 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Moneda de diamante de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Pase de espectador de Amberes 2022 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Ficha de recuerdo de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Pase de espectador de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Moneda de Río 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Moneda de diamante de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Pase de espectador de Río 2022 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Ficha de recuerdo de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medalla de Servicio de 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medalla de Servicio de 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Pase de espectador de París 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Moneda de París 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Moneda de diamante de París 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Pase de espectador de París 2023 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Ficha de recuerdo de París 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medalla de servicio del 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medalla de servicio del 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Pase de espectador de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Moneda de Copenhague 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Moneda de diamante de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Pase de espectador para Copenhague 2024 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Paquete de recuerdo de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campeón del PGL Copenhague 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medalla de Servicio de 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Pase de espectador de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Moneda de Shanghái 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Moneda de diamante de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Pase de espectador de Shanghái 2024 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Paquete de recuerdo de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Campeón del Perfect World Shanghái 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"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": "5110",
|
||||
"name": "Pase de espectador de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moneda de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moneda de plata de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moneda de oro de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moneda de diamante de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Pase de espectador para Austin 2025 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Paquete de recuerdo Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeón del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Cuartofinalista del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moneda del mapa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moneda del mapa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moneda del mapa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moneda del mapa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moneda del mapa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Moneda del mapa Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Moneda del mapa Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Moneda del mapa Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Moneda del mapa (Clasificado)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Pase de espectador de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Moneda de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Moneda de plata de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Moneda de oro de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Moneda de diamante de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Pase de espectador de Budapest 2025 + 3 fichas de recuerdo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Paquete de recuerdo Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campeón del StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista del StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalista del StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Cuartofinalista del StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medalla de Servicio de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin de Dust II de aspecto genuino",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "BLAST.tv Paris 2023 -neljännesfinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operaatio Vastaisku -passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operaatio Vastaiskun haastekolikko",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operaatio Bravo -passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operaatio Bravo -haastekolikko",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operaatio Feeniks -passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operaatio Feeniks -haastekolikko",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Kultainen Operaatio Feeniks -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operaatio Läpimurron täyden pääsyn passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operaatio Läpimurto -haastekolikko",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operaatio Eturintama -pääsypassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operaatio Eturintama -haastekolikko",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Kultainen Operaatio Eturintama -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operaatio Verikoira -pääsypassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operaatio Verikoira -haastekolikko",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Palvelusmitali 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operaatio Maastopalo -pääsypassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Maastopalo-operaation haastekolikko",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Palvelusmitali 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operaatio Hydra -pääsypassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Palvelusmitali 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Timanttinen Operaatio Hydra -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Operaatio Pirstaleisen verkon Premium-passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operaatio Pirstaleinen verkko -haastekolikko",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Timanttinen Operaatio Pirstaleinen verkko -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 -kolikko",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berliini 2019 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berliini 2019 -kolikko",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berliini 2019 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berliini 2019 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berliini 2019 -tuliaispoletti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Palvelusmitali 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Kaupunki 17 -pinssi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Operaatio Katkenneen torahampaan Premium-passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operaatio Katkennut torahammas -haastekolikko",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Palvelusmitali 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Operaatio Ristiaallokon Premium-passi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operaatio Ristiaallokko -haastekolikko",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Timanttinen Operaatio Ristiaallokko -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Tukholma 2021 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Tukholma 2021 -kolikko",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Tukholma 2021 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Tukholma 2021 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Tukholma 2021 -tuliaispoletti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Palvelusmitali 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Palvelusmitali 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerpen 2022 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerpen 2022 -kolikko",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerpen 2022 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerpen 2022 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerpen 2022 -tuliaispoletti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 -kolikko",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 -tuliaispoletti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Palvelusmitali 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Palvelusmitali 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 -kolikko",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 -tuliaispoletti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Palvelusmitali 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Palvelusmitali 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Kööpenhamina 2024 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Kööpenhamina 2024 -kolikko",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Kööpenhamina 2024 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Kööpenhamina 2024 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Kööpenhamina 2024 -tuliaispaketti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "PGL Kööpenhamina 2024 -mestari",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Palvelusmitali 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 -kolikko",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 -tuliaispaketti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Perfect World Shanghai 2024 -mestari",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 -hopeakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 -kultakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 -tuliaispaketti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 -mestari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 -finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 -semifinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 -neljännesfinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(Redacted)-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 -katsojapassi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 -hopeakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 -kultakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 -katsojapassi + 3 tuliaispolettia",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 -tuliaispaketti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "StarLadder Budapest 2025 -mestari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "StarLadder Budapest 2025 -finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "StarLadder Budapest 2025 -semifinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "StarLadder Budapest 2025 -neljännesfinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Palvelusmitali 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Aito Dust II -pinssi",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Quart-de-finaliste du tournoi BLAST.tv de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Passe de l'Opération Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Insigne de l'Opération Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Insigne de carte : Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Passe de l'Opération Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Insigne de l'Opération Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Insigne de carte : Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Passe de l'Opération Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Insigne de l'Opération Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Insigne en or de l'Opération Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Passe-partout de l'Opération Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Insigne de l'Opération Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Insigne de carte : Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Passe-partout de l'Opération Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Insigne de l'Opération Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Insigne en or de l'Opération Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Passe-partout de l'Opération Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Insigne de l'Opération Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Médaille de service 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Passe-partout de l'Opération Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Insigne de l'Opération Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Médaille de service 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Passe-partout de l'Opération Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Médaille de service 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Insigne en diamant de l'Opération Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Passe premium de l'Opération Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Insigne de l'Opération Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Insigne en diamant de l'Opération Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Passe spectateur de Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Insigne de Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Insigne en diamant de Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Passe spectateur de Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Insigne de Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Insigne en diamant de Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Passe spectateur de Berlin 2019 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Jeton souvenir de Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Médaille de service 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Pin's Cité 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Passe premium de l'Opération Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Insigne de l'Opération Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Médaille de service 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Passe premium de l'Opération Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Insigne de l'Opération Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"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": "4796",
|
||||
"name": "Passe du public de Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Insigne de Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Insigne en diamant de Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Passe du public de Stockholm 2021 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Jeton souvenir de Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Médaille de service 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Médaille de service 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Passe du public d'Anvers 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Insigne d'Anvers 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Insigne en diamant d'Anvers 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Passe du public d'Anvers 2022 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Jeton souvenir d'Anvers 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Passe du public de Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Insigne de Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Insigne en diamant de Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Passe du public de Rio 2022 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Jeton souvenir de Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Médaille de service 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Médaille de service 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Passe du public de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Insigne de Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Insigne en diamant de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Passe du public de Paris 2023 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Jeton souvenir de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Médaille de service 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Médaille de service 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Passe du public de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Insigne de Copenhague 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Insigne en diamant de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Passe du public de Copenhague 2024 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Paquet souvenir de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Équipe championne du tournoi PGL de Copenhague 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Médaille de service 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Passe du public de Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Insigne de Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Insigne en diamant de Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Passe du public de Shanghai 2024 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Paquet souvenir de Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Équipe championne du tournoi Perfect World de Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Passe du public d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Insigne d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Insigne en argent d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Insigne en or d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Insigne en diamant d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Passe du public d'Austin 2025 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Paquet souvenir d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Équipe championne du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Demi-finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quart-de-finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Insigne de carte : Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Insigne de carte : Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Insigne de carte : Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Insigne de carte : Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Insigne de carte : Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Insigne de carte : Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Insigne de carte : Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Insigne de carte : Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Insigne de carte (supprimée)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Passe du public de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Insigne de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Insigne en argent de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Insigne en or de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Insigne en diamant de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Passe du public de Budapest 2025 + 3 jetons souvenirs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Paquet souvenir de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Équipe championne de StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finaliste de StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Demi-finaliste de StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Quart-de-finaliste de StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Médaille de service 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin's Dust II (Authentique)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "A BLAST.tv Paris 2023 negyeddöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operation Payback belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operation Payback Érdemérem",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operation Bravo belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operation Bravo Érdemérem",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operation Phoenix belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operation Phoenix Érdemérem",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Arany Operation Phoenix Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operation Breakout teljes hozzáférés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operation Breakout Érdemérem",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operation Vanguard hozzáférés belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operation Vanguard Érdemérem",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Arany Operation Vanguard Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operation Bloodhound hozzáférés belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operation Bloodhound Érdemérem",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015-ös Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operation Wildfire Belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operation Wildfire Érdemérem",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operation Hydra Belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017-es Szolgálati Érdemérem",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Gyémánt Operation Hydra Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Operation Shattered Web prémium belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operation Shattered Web Érdemérem",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Gyémánt Operation Shattered Web Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 Érme",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 Érme",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 Emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020-as Szolgálati Érdemérem",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "17-es Város kitűző",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Operation Broken Fang prémium belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operation Broken Fang Érdemérem",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021-es Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Operation Riptide prémium belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operation Riptide Érdemérem",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Gyémánt Operation Riptide Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 Nézői Belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Érme",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 Emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022-es Szolgálati Érdemérem",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022-es Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 Érme",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 Emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 Érme",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 Emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023-as Szolgálati Érdemérem",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023-as Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 Nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 Érme",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 Nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 Emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024-es Szolgálati Érdemérem",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024-es Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 Nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 Érme",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 Nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 Emlékcsomag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "A PGL Copenhagen 2024 bajnoka",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025-ös Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 Nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 Érme",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 Nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 Emlékcsomag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "A Perfect World Shanghai 2024 bajnoka",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 Nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Ezüst Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Arany Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 Nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 Emlékcsomag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "A BLAST.tv Austin 2025 bajnoka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "A BLAST.tv Austin 2025 döntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "A BLAST.tv Austin 2025 elődöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "A BLAST.tv Austin 2025 negyeddöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(Titkosítva) Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 Nézői belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 Ezüst Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 Arany Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 Nézői belépő + 3 emléktárgy-zseton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 Emlékcsomag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "A StarLadder Budapest 2025 bajnoka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "A StarLadder Budapest 2025 döntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "A StarLadder Budapest 2025 elődöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "A StarLadder Budapest 2025 negyeddöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Negyedik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026-os Szolgálati Érdemérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II kitűző (Eredeti)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Quartofinalista del BLAST.tv di Parigi 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Pass per l'Operazione Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Gettone Sfida dell'Operazione Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Gettone della mappa Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Pass per l'Operazione Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Gettone Sfida dell'Operazione Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Gettone della mappa Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Pass per l'Operazione Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Gettone Sfida dell'Operazione Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Gettone d'oro dell'Operazione Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Pass di accesso completo dell'Operazione Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Gettone Sfida dell'Operazione Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Gettone della mappa Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Pass di accesso dell'Operazione Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Gettone Sfida dell'Operazione Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Gettone d'oro dell'Operazione Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Pass di accesso all'Operazione Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Gettone sfida dell'Operazione Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medaglia al merito di servizio (2015)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Pass di accesso dell'Operazione Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Gettone Sfida dell'Operazione Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medaglia al merito di servizio (2016)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Pass di accesso dell'Operazione Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medaglia al merito di servizio (2017)",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Gettone diamante dell'Operazione Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Pass Premium Operazione Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Gettone Sfida dell'Operazione Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Gettone diamante dell'Operazione Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Pass da spettatore - Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Gettone di Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Gettone di diamante di Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Pass da spettatore - Berlino 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Gettone di Berlino 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Gettone di diamante di Berlino 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Pass da spettatore Berlino 2019 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Token souvenir di Berlino 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medaglia al merito di servizio (2020)",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Spilla di City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Pass Premium dell'Operazione Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Gettone Sfida dell'Operazione Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medaglia al merito di servizio (2021)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Pass Premium Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Gettone Sfida dell'Operazione Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Gettone diamante dell'Operazione Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Pass da spettatore di Stoccolma 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Gettone di Stoccolma 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Gettone di diamante di Stoccolma 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Pass da spettatore di Stoccolma 2021 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Token souvenir di Stoccolma 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medaglia al merito di servizio (2022)",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medaglia al merito di servizio (2022)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Pass da spettatore di Anversa 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Gettone di Anversa 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Gettone di diamante di Anversa 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Pass da spettatore Anversa 2022 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Token souvenir di Anversa 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Pass da spettatore di Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Gettone di Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Gettone di diamante di Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Pass da spettatore Rio 2022 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Token souvenir di Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medaglia al merito di servizio (2023)",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medaglia al merito di servizio (2023)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Pass da spettatore di Parigi 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Gettone Parigi 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Gettone di diamante Parigi 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Pass da spettatore Parigi 2023 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Token souvenir di Parigi 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medaglia al merito di servizio (2024)",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medaglia al merito di servizio (2024)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Pass da spettatore - Copenaghen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Gettone di Copenaghen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Gettone di diamante di Copenaghen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Pass da spettatore Copenaghen 2024 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Pacchetto di souvenir di Copenaghen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campione del PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medaglia al merito di servizio (2025)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Pass da spettatore - Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Gettone di Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Gettone di diamante di Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Pass da spettatore Shanghai 2024 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Pacchetto di souvenir di Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Vincitore del Perfect World di Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Pass da spettatore di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Gettone di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Gettone d'argento di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Gettone d'oro di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Gettone di diamante di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Pass da spettatore Austin 2025 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Pacchetto di souvenir di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campione del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quartofinalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Gettone della mappa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Gettone della mappa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Gettone della mappa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Gettone della mappa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Gettone della mappa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Gettone della mappa Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Gettone della mappa Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Gettone della mappa Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Gettone della mappa (rimosso)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Pass da spettatore di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Gettone di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Gettone d'argento di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Gettone d'oro di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Gettone di diamante di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Pass da spettatore di Budapest 2025 + 3 token souvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Pacchetto di souvenir di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campione dello StarLadder di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista allo StarLadder di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalisti allo StarLadder di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Partecipanti ai quarti di finale dello StarLadder di Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medaglia della Stagione quattro Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medaglia al merito di servizio (2026)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Gettone della mappa Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Gettone della mappa Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Gettone della mappa Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Gettone della mappa Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Gettone della mappa Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Spilla di Dust II Autentico",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "BLAST.tv Paris 2023 準々決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operation Payback パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operation Payback チャレンジコイン",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operation Bravo パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operation Bravo チャレンジコイン",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operation Phoenix パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operation Phoenix チャレンジ コイン",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Operation Phoenix ゴールド コイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operation Breakout オールアクセスパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operation Breakout チャレンジコイン",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operation Vanguard アクセスパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operation Vanguard チャレンジコイン",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Operation Vanguard ゴールドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operation Bloodhound アクセスパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operation Bloodhound チャレンジコイン",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operation Wildfire アクセスパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operation Wildfire チャレンジコイン",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operation Hydra アクセスパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 従軍メダル",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Operation Hydra ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Operation Shattered Web プレミアムパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operation Shattered Web チャレンジコイン",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Operation Shattered Web ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 Viewer Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 Coin",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 コイン",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 記念トークン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 従軍メダル",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17 ピン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Operation Broken Fang プレミアムパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operation Broken Fang チャレンジコイン",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Operation Riptide プレミアムパス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operation Riptide チャレンジコイン",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Operation Riptide ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 コイン",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 記念トークン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 従軍メダル",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 コイン",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 記念トークン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 コイン",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 記念トークン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 従軍メダル",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 コイン",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 記念トークン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 従軍メダル",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 コイン",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 記念パッケージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "PGL Copenhagen 2024 優勝",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 コイン",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 記念パッケージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Perfect World Shanghai 2024 優勝",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 コイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 シルバーコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 ゴールドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 記念パッケージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 優勝",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 準決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 準々決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(削除済み) Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 視聴者パス",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 コイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 シルバーコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 ゴールドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 視聴者パス + 記念トークン x 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 記念パッケージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "StarLadder Budapest 2025 優勝",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "StarLadder Budapest 2025 ファイナリスト",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "StarLadder Budapest 2025 セミファイナリスト",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "StarLadder Budapest 2025 準々決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "プレミアシーズン 4 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 従軍メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "ジェニュイン Dust II ピン",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "BLAST.tv 파리 2023 메이저 대회 8강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "보상 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "보상 작전 도전 주화",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "도서관 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "브라보 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "브라보 작전 도전 주화",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "시즈 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "피닉스 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "피닉스 작전 도전 주화",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "피닉스 작전 금 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "돌파 작전 무제한 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "돌파 작전 도전 주화",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "성배 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "선봉 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "선봉 작전 도전 주화",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "선봉 작전 금 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "블러드하운드 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "블러드하운드 작전 도전 주화",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "들불 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "들불 작전 도전 주화",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "히드라 작전 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017년 무공 훈장",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "히드라 작전 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "파괴 망 작전 프리미엄 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "파괴 망 작전 도전 주화",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "파괴 망 작전 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "카토비체 2019 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "카토비체 2019 주화",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "카토비체 2019 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "베를린 2019 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "베를린 2019 주화",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "베를린 2019 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "베를린 2019 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "베를린 2019 기념품 토큰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020년 무공 훈장",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "17번 지구 핀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "브로큰 팽 작전 프리미엄 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "브로큰 팽 작전 도전 주화",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "립타이드 작전 프리미엄 참가권",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "립타이드 작전 도전 주화",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "립타이드 작전 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "스톡홀름 2021 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "스톡홀름 2021 주화",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "스톡홀름 2021 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "스톡홀름 2021 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "스톡홀름 2021 기념품 토큰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022년 무공 훈장",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "안트베르펜 2022 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "안트베르펜 2022 주화",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "안트베르펜 2022 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "안트베르펜 2022 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "안트베르펜 2022 기념품 토큰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "리우데자네이루 2022 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "리우데자네이루 2022 주화",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "리우데자네이루 2022 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "리우데자네이루 2022 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "리우데자네이루 2022 기념품 토큰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023년 무공 훈장",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "파리 2023 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "파리 2023 주화",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "파리 2023 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "파리 2023 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "파리 2023 기념품 토큰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024년 무공 훈장",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "코펜하겐 2024 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "코펜하겐 2024 주화",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "코펜하겐 2024 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "코펜하겐 2024 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "코펜하겐 2024 기념품 패키지",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "PGL 코펜하겐 2024 우승팀",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "상하이 2024 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "상하이 2024 주화",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "상하이 2024 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "상하이 2024 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "상하이 2024 기념품 패키지",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Perfect World 상하이 2024 우승팀",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "오스틴 2025 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "오스틴 2025 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "오스틴 2025 은 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "오스틴 2025 금 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "오스틴 2025 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "오스틴 2025 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "오스틴 2025 기념품 패키지",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 우승팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv 오스틴 2025 결승 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 4강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 8강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "에이전시 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "쥐라 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "그레일 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "도그타운 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "브루어리 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "골든 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "루프탑 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "팔라시오 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "제거된 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "부다페스트 2025 관전자 패스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "부다페스트 2025 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "부다페스트 2025 은 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "부다페스트 2025 금 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "부다페스트 2025 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "부다페스트 2025 관전자 패스 + 기념품 토큰 3개",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "부다페스트 2025 기념품 패키지",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "StarLadder 부다페스트 2025 우승팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "StarLadder 부다페스트 2025 결승 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "StarLadder 부다페스트 2025 4강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "StarLadder 부다페스트 2025 8강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "프리미어 시즌 4 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026년 무공 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "워든 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "요새 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "알프스 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "포세이돈 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "성소 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "진품 더스트 2 핀",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -589,6 +589,11 @@
|
||||
"name": "Kvartfinalist i BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Pass for Operasjon Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Utfordringsmynt for Operasjon Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Kartmynt for Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operasjon Bravo-pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Utfordringsmynt for Operasjon Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Kartmynt for Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operasjon Phoenix-pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Utfordringsmynt for Operasjon Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Gullmynt for Operasjon Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "«All Access»-pass for Operasjon Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Utfordringsmynt for Operasjon Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Kartmynt for Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operasjon Vanguard-tilgangspass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Utfordringsmynt for Operasjon Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Gullmynt for Operasjon Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operation Bloodhound-adgangspass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Utfordringsmynt for Operasjon Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Tjenestemedalje 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operasjon Wildfire-tilgangspass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Utfordringsmynt for Operasjon Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Tjenestemedalje 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operasjon Hydra-tilgangspass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Tjenestemedalje 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamantmynt for Operasjon Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Operasjon Shattered Web – Premiumpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Utfordringsmynt for Operasjon Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamantmynt for Operasjon Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Mynt for Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamantmynt for Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Mynt for Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamantmynt for Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 – Suvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Tjenestemedalje 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Pins – City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Operasjon Broken Fang – Premiumpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Utfordringsmynt for Operasjon Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Tjenestemedalje 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Operasjon Riptide – Premiumpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Utfordringsmynt for Operasjon Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamantmynt for Operasjon Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Mynt for Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamantmynt for Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 – Suvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Tjenestemedalje 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Tjenestemedalje 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Mynt for Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamantmynt for Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 – Suvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Mynt for Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamantmynt for Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 – Suvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Tjenestemedalje 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Tjenestemedalje 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Mynt for Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamantmynt for Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 – Suvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Tjenestemedalje 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Tjenestemedalje 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Mynt for Copenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Diamantmynt for Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 – Suvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Vinneren av PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Tjenestemedalje 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Mynt for Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Diamantmynt for Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 – Suvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Vinneren av Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Sølvmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Gullmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 – Suvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vinneren av BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartfinalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Kartmynt for Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Kartmynt for Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Kartmynt for Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Kartmynt for Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Kartmynt for Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Kartmynt for Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Kartmynt for Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Kartmynt for Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Kartmynt for (Sladdet)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 – Tilskuerpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Mynt for Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Sølvmynt for Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Gullmynt for Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamantmynt for Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 – Tilskuerpass + 3 suvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 – Suvenirpakke",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Vinneren av StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist i StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalist i StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Kvartfinalist i StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalje for 4. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Tjenestemedalje 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Kartmynt for Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Kartmynt for Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Kartmynt for Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Kartmynt for Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Kartmynt for Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pins – Dust II (Ekte)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Ćwierćfinalista BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Przepustka operacji Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Żeton wyzwania operacji Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Żeton mapy Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Przepustka do operacji Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Żeton wyzwania operacji Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Żeton mapy Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Przepustka do Operacji Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Żeton Operacji Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Złoty żeton operacji Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Przepustka pełnego dostępu operacji Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Żeton wyzwania operacji Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Żeton mapy Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Przepustka operacji Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Żeton wyzwania operacji Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Złoty żeton operacji Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Przepustka operacji Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Żeton wyzwania operacji Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medal za Służbę w 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Przepustka operacji Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Żeton wyzwania operacji Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medal za Służbę w 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Przepustka operacji Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medal za Służbę w 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamentowy żeton operacji Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Przepustka premium operacji Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Żeton wyzwania operacji Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamentowy żeton operacji Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Przepustka widza IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Żeton IEM Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamentowy żeton IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Przepustka widza StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Żeton StarLadder Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamentowy żeton StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Przepustka widza StarLadder Berlin 2019 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Moneta pamiątek StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medal za Służbę w 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Odznaka City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Przepustka premium operacji Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Żeton wyzwania operacji Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medal za Służbę w 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Przepustka premium operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Żeton wyzwania operacji Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamentowy żeton operacji Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Przepustka widza PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Żeton PGL Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamentowy żeton PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Przepustka widza PGL Stockholm 2021 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Moneta pamiątek PGL Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medal za Służbę w 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medal za Służbę w 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Przepustka widza PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Żeton PGL Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamentowy żeton PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Przepustka widza PGL Antwerp 2022 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Moneta pamiątek PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Przepustka widza IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Żeton IEM Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamentowy żeton IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Przepustka widza IEM Rio 2022 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Moneta pamiątek IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medal za Służbę w 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medal za Służbę w 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Przepustka widza BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Żeton BLAST.tv Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamentowy żeton BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Przepustka widza BLAST.tv Paris 2023 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Moneta pamiątek BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medal za Służbę w 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medal za Służbę w 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Przepustka widza PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Żeton PGL Copenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "DIamentowy żeton PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Przepustka widza PGL Copenhagen 2024 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Zestaw pamiątkowy z PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Mistrz PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medal za Służbę w 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Przepustka widza Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Żeton Perfect World Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Diamentowy żeton Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Przepustka widza Perfect World Shanghai 2024 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Zestaw pamiątkowy z Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Mistrz Perfect World Shanghai 2024",
|
||||
@@ -1939,9 +2104,579 @@
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Przepustka widza BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Srebrny żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Złoty żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamentowy żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Przepustka widza BLAST.tv Austin 2025 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Zestaw pamiątkowy z BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Mistrz BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Półfinalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Ćwierćfinalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Żeton mapy Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Żeton mapy Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Żeton mapy Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Żeton mapy Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Żeton mapy Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Żeton mapy Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Żeton mapy Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Żeton mapy Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Żeton mapy [OCENZUROWANO]",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Przepustka widza StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Żeton StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Srebrny żeton StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Złoty żeton StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamentowy żeton StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Przepustka widza StarLadder Budapest 2025 + 3 monety pamiątek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Zestaw pamiątkowy ze StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Mistrz StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Półfinalista StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Ćwierćfinalista StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medal 4. Sezonu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medal za Służbę w 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Żeton mapy Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Żeton mapy Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Żeton mapy Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Żeton mapy Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Żeton mapy Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznaka Dust II (oryginał)",
|
||||
"name": "Odznaka Dust II (oryginał)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6001.png"
|
||||
},
|
||||
{
|
||||
@@ -2111,7 +2846,7 @@
|
||||
},
|
||||
{
|
||||
"id": "6101",
|
||||
"name": "Odznaka Dust II",
|
||||
"name": "Odznaka Dust II",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-6101.png"
|
||||
},
|
||||
{
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Jogador das QF do Paris 2023 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Passe da Operação Acerto de Contas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Moeda de Desafio da Op. Acerto de Contas",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Moeda do Mapa Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Passe da Operação Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Moeda de Desafio da Op. Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Moeda do Mapa Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Passe da Operação Fênix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Moeda de Desafio da Op. Fênix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Moeda de Ouro da Op. Fênix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Passe Livre da Operação Libertação",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Moeda de Desafio da Op. Libertação",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Moeda do Mapa Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Passe da Operação Vanguarda",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Moeda de Desafio da Op. Vanguarda",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Moeda de Ouro da Op. Vanguarda",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Passe da Operação Cão de Caça",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Moeda de Desafio da Op. Cão de Caça",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medalha de Serviço de 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Passe da Operação Fogo Selvagem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Moeda de Desafio da Op. Fogo Selvagem",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medalha de Serviço de 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Passe da Operação Hidra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medalha de Serviço de 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Moeda de Diamante da Op. Hidra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Passe Premium da Operação Teia Fragmentada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Moeda de Desafio da Op. Teia Fragmentada",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Moeda de Diamante da Op. Teia Fragmentada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Passe de Espectador do Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Moeda do Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Moeda de Diamante do Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Passe de Espectador do Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Moeda do Berlim 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Moeda de Diamante do Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Passe de Espectador do Berlim 2019 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Ficha de lembrança do Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalha de Serviço de 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Broche | Cidade 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Passe Premium da Operação Presa Quebrada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Moeda de Desafio da Op. Presa Quebrada",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medalha de Serviço de 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Passe Premium da Operação Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Moeda de Desafio da Op. Correnteza",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Moeda de Diamante da Op. Correnteza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Passe de Espectador do Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moeda do Estocolmo 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Moeda de Diamante do Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Passe de Espectador do Estocolmo 2021 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Ficha de lembrança do Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medalha de Serviço de 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medalha de Serviço de 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Passe de Espectador do Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Moeda do Antuérpia 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Moeda de Diamante do Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Passe de Espectador do Antuérpia 2022 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Ficha de Lembrança do Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Passe de Espectador do Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Moeda do Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Moeda de Diamante do Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Passe de Espectador do Rio 2022 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Ficha de Lembrança do Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medalha de Serviço de 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medalha de Serviço de 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Passe de Espectador do Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Moeda do Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Moeda de Diamante do Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Passe de Espectador do Paris 2023 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Ficha de Lembrança do Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medalha de Serviço de 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medalha de Serviço de 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Passe de Espectador do Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Moeda do Copenhague 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Moeda de Diamante do Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Passe de Espectador do Copenhague 2024 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Pacote de Lembrança do Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campeão do Copenhague 2024 da PGL",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medalha de Serviço de 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Passe de Espectador do Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Moeda do Xangai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Moeda de Diamante do Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Passe de Espectador do Xangai 2024 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Pacote de Lembrança do Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Campeão do Xangai 2024 da Perfect World",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Passe de Espectador do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moeda do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moeda de Prata do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moeda de Ouro do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moeda de Diamante do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Passe de Espectador do Austin 2025 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Pacote de Lembrança do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeão do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Jogador das QF do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moeda do Mapa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moeda do Mapa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moeda do Mapa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moeda do Mapa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moeda do Mapa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Moeda do Mapa Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Moeda do Mapa Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Moeda do Mapa Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Moeda do Mapa [REMOVIDO]",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Passe de Espectador do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Moeda do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Moeda de Prata do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Moeda de Ouro do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Moeda de Diamante do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Passe de Espectador do Budapeste 2025 + 3 Fichas de Lembrança",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Pacote de Lembrança do Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campeão do Budapeste 2025 da StarLadder",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista do Budapeste 2025 da StarLadder",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalista do Budapeste 2025 da StarLadder",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Jogador das QF do Budapeste 2025 da StarLadder",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalha da Quarta Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Moeda do Mapa Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Moeda do Mapa Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Moeda do Mapa Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Moeda do Mapa Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Moeda do Mapa Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Broche | Dust II Genuíno",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Participante nos Quartos de Final do BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Passe: Operação Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Moeda da Operação Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Moeda do Mapa \\\"Library\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Passe: Operação Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Moeda da Operação Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Moeda do Mapa \\\"Siege\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Passe: Operação Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Moeda da Operação Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Moeda de Ouro da Operação Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Passe: Operação Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Moeda da Operação Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Moeda do Mapa \\\"Chalice\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Passe: Operação Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Moeda da Operação Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Moeda de Ouro da Operação Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Passe: Operação Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Moeda da Operação Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medalha de Serviço de 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Passe: Operação Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Moeda da Operação Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medalha de Serviço de 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Passe: Operação Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medalha de Serviço de 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Moeda de Diamante da Operação Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Passe Premium da Operação Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Moeda da Operação Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Moeda de Diamante da Operação Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Passe de Espectador - Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Moeda de Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Moeda de Diamante de Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Passe de Espectador de Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Moeda de Berlim 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Moeda de Diamante de Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Passe de Espectador de Berlim 2019 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Ficha de Brinde - Berlim 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalha de Serviço de 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Pin - City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Passe Premium da Operação Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Moeda da Operação Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medalha de Serviço de 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Passe Premium da Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Moeda da Operação Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Moeda de Diamante da Operação Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Passe de Espectador de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moeda de Estocolmo 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Moeda de Diamante de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Passe de Espectador de Estocolmo 2021 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Ficha de Brinde - Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medalha de Serviço de 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Medalha de Serviço de 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Passe de Espectador de Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Moeda de Antuérpia 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Moeda de Diamante de Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Passe de Espectador de Antuérpia 2022 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Ficha de Brinde - Antuérpia 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Passe de Espectador do Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Moeda do Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Moeda de Diamante do Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Passe de Espectador do Rio 2022 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Ficha de Brinde - Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medalha de Serviço de 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Medalha de Serviço de 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Passe de Espectador de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Moeda de Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Moeda de Diamante de Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Passe de Espectador de Paris 2023 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Ficha de Brinde - Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medalha de Serviço de 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medalha de Serviço de 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Passe de Espectador de Copenhaga 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Moeda de Copenhaga 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Moeda de Diamante de Copenhaga 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Passe de Espectador de Copenhaga 2024 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Brinde de Copenhaga 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campeão do PGL Copenhaga 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Medalha de Serviço de 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Passe de Espectador de Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Moeda de Xangai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Moeda de Diamante de Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Passe de Espectador de Xangai 2024 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Brinde de Xangai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Campeão do Perfect World Xangai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Passe de Espectador de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moeda de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moeda de Prata de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moeda de Ouro de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moeda de Diamante de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Passe de Espectador de Austin 2025 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Brinde de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeão do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Participante nos Quartos de Final do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moeda do Mapa \\\"Agency\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moeda do Mapa \\\"Jura\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moeda do Mapa \\\"Grail\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moeda do Mapa \\\"Dogtown\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moeda do Mapa \\\"Brewery\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Moeda do Mapa \\\"Golden\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Moeda do Mapa \\\"Rooftop\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Moeda do Mapa \\\"Palacio\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Moeda do Mapa [REMOVIDO]",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Passe de Espectador de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Moeda de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Moeda de Prata de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Moeda de Ouro de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Moeda de Diamante de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Passe de Espectador de Budapeste 2025 + 3 Fichas de Brinde",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Brinde de Budapeste 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campeão do StarLadder Major 2025 em Budapeste",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista do StarLadder Major 2025 em Budapeste",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalista do StarLadder Major 2025 em Budapeste",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Participante nos Quartos de Final do StarLadder Major 2025 em Budapeste",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalha da Temporada 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medalha de Serviço de 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Moeda do Mapa \\\"Warden\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Moeda do Mapa \\\"Stronghold\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Moeda do Mapa \\\"Alpine\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Moeda do Mapa \\\"Poseidon\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Moeda do Mapa \\\"Sanctum\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin - Dust II Genuíno",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Sfertfinalist la BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Bilet pentru operațiunea Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Monedă specială – Operațiunea Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Moneda hărții Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Bilet pentru operațiunea Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Monedă specială – Operațiunea Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Moneda hărții Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Bilet pentru operațiunea Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Monedă specială – Operațiunea Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Monedă de aur – Operațiunea Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Bilet cu acces complet pentru operațiunea Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Monedă specială – Operațiunea Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Moneda hărții Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Bilet de acces pentru operațiunea Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Monedă specială – Operațiunea Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Monedă de aur – Operațiunea Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Bilet de acces pentru operațiunea Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Monedă specială – Operațiunea Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Medalie de merit 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Bilet de acces pentru operațiunea Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Monedă specială – Operațiunea Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Medalie de merit 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Bilet de acces pentru operațiunea Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Medalie de merit 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Monedă de diamant – Operațiunea Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Bilet premium pentru operațiunea Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Monedă specială – Operațiunea Shattered Web",
|
||||
@@ -1234,9 +1279,14 @@
|
||||
"name": "Monedă de diamant – Operațiunea Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Moneda Katowice 2019",
|
||||
"name": "Katowice 2019 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4555.png"
|
||||
},
|
||||
{
|
||||
@@ -1254,9 +1304,14 @@
|
||||
"name": "Katowice 2019 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Moneda Berlin 2019",
|
||||
"name": "Berlin 2019 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4623.png"
|
||||
},
|
||||
{
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 - Jeton de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Medalie de merit 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Insignă City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Bilet premium pentru operațiunea Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Monedă specială – Operațiunea Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Medalie de merit 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Bilet premium pentru operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Monedă specială – Operațiunea Riptide",
|
||||
@@ -1429,9 +1504,14 @@
|
||||
"name": "Monedă de diamant – Operațiunea Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Moneda Stockholm 2021",
|
||||
"name": "Stockholm 2021 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4797.png"
|
||||
},
|
||||
{
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 - Jeton de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Medalie de merit 2022",
|
||||
@@ -1479,9 +1569,14 @@
|
||||
"name": "Medalie de merit 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Moneda Antwerp 2022",
|
||||
"name": "Antwerp 2022 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4826.png"
|
||||
},
|
||||
{
|
||||
@@ -1499,9 +1594,24 @@
|
||||
"name": "Antwerp 2022 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 - Jeton de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Moneda Rio 2022",
|
||||
"name": "Rio 2022 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4851.png"
|
||||
},
|
||||
{
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 - Jeton de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Medalie de merit 2023",
|
||||
@@ -1549,9 +1669,14 @@
|
||||
"name": "Medalie de merit 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Moneda Paris 2023",
|
||||
"name": "Paris 2023 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4884.png"
|
||||
},
|
||||
{
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 - Jeton de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Medalie de merit 2024",
|
||||
@@ -1599,9 +1734,14 @@
|
||||
"name": "Medalie de merit 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Moneda Copenhagen 2024",
|
||||
"name": "Copenhagen 2024 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4917.png"
|
||||
},
|
||||
{
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Pachet cu suvenir | Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campion la PGL Copenhagen 2024",
|
||||
@@ -1694,9 +1844,14 @@
|
||||
"name": "Medalie de merit 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Moneda Shanghai 2024",
|
||||
"name": "Shanghai 2024 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4958.png"
|
||||
},
|
||||
{
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Pachet cu suvenir | Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Campion la Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 - Monedă de argint",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 - Monedă de aur",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Pachet cu suvenir | Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campion la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Sfertfinalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moneda hărții Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moneda hărții Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moneda hărții Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moneda hărții Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moneda hărții Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Moneda hărții Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Moneda hărții Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Moneda hărții Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Moneda hărții (eliminată)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 - Bilet de spectator",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 - Monedă de argint",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 - Monedă de aur",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 - Bilet de spectator + 3 jetoane de suvenir",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Pachet cu suvenir | Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campion la StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist la StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalist la StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Sfertfinalist la StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalie Premier - Sezonul 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Medalie de merit 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Moneda hărții Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Moneda hărții Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Moneda hărții Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Moneda hărții Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Moneda hărții Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Insignă Dust II (Autentic)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Четвертьфиналист BLAST.tv Paris Major 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Пропуск на операцию «Расплата»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Монета операции «Расплата»",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Монета карты Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Пропуск на операцию «Браво»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Монета операции «Браво»",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Монета карты Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Пропуск на операцию «Феникс»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Монета операции «Феникс»",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Золотая монета операции «Феникс»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Полный пропуск на операцию «Прорыв»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Монета операции «Прорыв»",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Монета карты Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Пропуск на операцию «Авангард»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Монета операции «Авангард»",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Золотая монета операции «Авангард»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Пропуск на операцию «Бладхаунд»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Монета операции «Бладхаунд»",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Медаль за службу в 2015 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Пропуск на операцию «Дикое пламя»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Монета операции «Дикое пламя»",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Медаль за службу в 2016 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Пропуск на операцию «Гидра»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Медаль за службу в 2017 году",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Бриллиантовая монета операции «Гидра»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Премиум-пропуск на операцию «Расколотая сеть»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Монета операции «Расколотая сеть»",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Бриллиантовая монета операции «Расколотая сеть»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Пропуск зрителя IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Монета IEM Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Бриллиантовая монета IEM Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Пропуск зрителя StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Монета StarLadder Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Бриллиантовая монета StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Пропуск зрителя StarLadder Berlin 2019 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Сувенирный жетон StarLadder Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медаль за службу в 2020 году",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Значок: Сити-17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Премиум-пропуск на операцию «Сломанный клык»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Монета операции «Сломанный клык»",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Медаль за службу в 2021 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Премиум-пропуск на операцию «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Монета операции «Хищные воды»",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Бриллиантовая монета операции «Хищные воды»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Пропуск зрителя PGL Major Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Монета PGL Major Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Бриллиантовая монета PGL Major Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Пропуск зрителя PGL Major Stockholm 2021 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Сувенирный жетон PGL Major Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Медаль за службу в 2022 году",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Медаль за службу в 2022 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Пропуск зрителя PGL Major Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Монета PGL Major Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Бриллиантовая монета PGL Major Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Пропуск зрителя PGL Major Antwerp 2022 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Сувенирный жетон PGL Major Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Пропуск зрителя IEM Rio Major 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Монета IEM Rio Major 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Бриллиантовая монета IEM Rio Major 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Пропуск зрителя IEM Rio Major 2022 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Сувенирный жетон IEM Rio Major 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Медаль за службу в 2023 году",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Медаль за службу в 2023 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Пропуск зрителя BLAST.tv Paris Major 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Монета BLAST.tv Paris Major 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Бриллиантовая монета BLAST.tv Paris Major 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Пропуск зрителя BLAST.tv Paris Major 2023 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Сувенирный жетон BLAST.tv Paris Major 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Медаль за службу в 2024 году",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Медаль за службу в 2024 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Пропуск зрителя PGL Major Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Монета PGL Major Copenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Бриллиантовая монета PGL Major Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Пропуск зрителя PGL Major Copenhagen 2024 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Сувенирный набор PGL Major Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Чемпион PGL Major Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Медаль за службу в 2025 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Пропуск зрителя шанхайского мейджора 2024 года",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Монета шанхайского мейджора 2024 года",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Бриллиантовая монета шанхайского мейджора 2024 года",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Пропуск зрителя шанхайского мейджора 2024 года + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Сувенирный набор шанхайского мейджора 2024 года",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Чемпион Perfect World Shanghai Major 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Пропуск зрителя BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Серебряная монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Золотая монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Бриллиантовая монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Пропуск зрителя BLAST.tv Austin Major 2025 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Сувенирный набор BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Чемпион BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Финалист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Полуфиналист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Четвертьфиналист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета карты Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета карты Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета карты Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета карты Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета карты Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Монета карты Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Монета карты Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Монета карты Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Монета карты (УДАЛЕНО)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Пропуск зрителя StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Монета StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Серебряная монета StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Золотая монета StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Бриллиантовая монета StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Пропуск зрителя StarLadder Budapest Major 2025 + 3 сувенирных жетона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Сувенирный набор StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Чемпион StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Финалист StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Полуфиналист StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Четвертьфиналист StarLadder Budapest Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Медаль за службу в 2026 году",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Высшей пробы Значок: Dust II",
|
||||
|
||||
@@ -551,44 +551,49 @@
|
||||
},
|
||||
{
|
||||
"id": "988",
|
||||
"name": "Champion at IEM Rio 2022",
|
||||
"name": "Mästare i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-988.png"
|
||||
},
|
||||
{
|
||||
"id": "989",
|
||||
"name": "Finalist at IEM Rio 2022",
|
||||
"name": "Finalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-989.png"
|
||||
},
|
||||
{
|
||||
"id": "990",
|
||||
"name": "Semifinalist at IEM Rio 2022",
|
||||
"name": "Semifinalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-990.png"
|
||||
},
|
||||
{
|
||||
"id": "991",
|
||||
"name": "Quarterfinalist at IEM Rio 2022",
|
||||
"name": "Kvartsfinalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-991.png"
|
||||
},
|
||||
{
|
||||
"id": "992",
|
||||
"name": "Champion at BLAST.tv Paris 2023",
|
||||
"name": "Mästare vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-992.png"
|
||||
},
|
||||
{
|
||||
"id": "993",
|
||||
"name": "Finalist at BLAST.tv Paris 2023",
|
||||
"name": "Finalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-993.png"
|
||||
},
|
||||
{
|
||||
"id": "994",
|
||||
"name": "Semifinalist at BLAST.tv Paris 2023",
|
||||
"name": "Semifinalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-994.png"
|
||||
},
|
||||
{
|
||||
"id": "995",
|
||||
"name": "Quarterfinalist at BLAST.tv Paris 2023",
|
||||
"name": "Kvartsfinalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Pass till Operation Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Utmaningsmynt för Operation Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Banmynt för Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operation Bravo Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Utmaningsmynt för Operation Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Banmynt för Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operation Phoenix-pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Utmaningsmynt för Operation Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Guldmynt för Operation Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Operation Breakout All Access-pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Utmaningsmynt för Operation Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Banmynt för Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operation Vanguard Access Pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Utmaningsmynt för Operation Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Guldmynt för Operation Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Åtkomstpass: Operation Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Utmaningsmynt för Operation Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Åtkomstpass för Operation Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Utmaningsmynt för Operation Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operation Hydra-pass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 års tjänstemedalj",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamantmynt för Operation Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Premiumpass för Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Mynt för Operation Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamantmynt för Operation Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Åskådarpass till Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Mynt för Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamantmynt för Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Åskådarpass till Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Mynt för Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamantmynt för Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Åskådarpass till Berlin 2019 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019-souvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 års tjänstemedalj",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17-pin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Premiumpass för Operation Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Utmaningsmynt för Operation Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Premiumpass för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Utmaningsmynt för Operation Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamantmynt för Operation Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021-åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021-mynt",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021-diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021-åskådarpass + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021-souvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 års tjänstemedalj",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 – Åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 – Mynt",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 – Diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Åskådarpass till Antwerp 2022 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022-souvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 – åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 – Mynt",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 – Diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Åskådarpass till Rio 2022 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022-souvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 års tjänstemedalj",
|
||||
@@ -1549,9 +1669,14 @@
|
||||
"name": "2023 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023-åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 Coin",
|
||||
"name": "Paris 2023-mynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4884.png"
|
||||
},
|
||||
{
|
||||
@@ -1561,14 +1686,24 @@
|
||||
},
|
||||
{
|
||||
"id": "4886",
|
||||
"name": "Paris 2023 Gold Coin",
|
||||
"name": "Paris 2023 – guldmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4886.png"
|
||||
},
|
||||
{
|
||||
"id": "4887",
|
||||
"name": "Paris 2023 Diamond Coin",
|
||||
"name": "Paris 2023 – diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Åskådarpass till Paris 2023 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Rio 2023-souvenirpollett",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 års tjänstemedalj",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 – åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 – mynt",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 – diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Åskådarpass Copenhagen 2024 + tre souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Souvenirpaket: Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Mästare av PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 – åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 – mynt",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 – diamantmynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024-åskådarpass + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Souvenirpaket: Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Vinnare av Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"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": "5110",
|
||||
"name": "Åskådarpass: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Silvermynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Guldmynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Åskådarpass: Austin 2025 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Souvenirpaket: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Mästare vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartsfinalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Banmynt för Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Banmynt för Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Banmynt för Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Banmynt för Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Banmynt för Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Banmynt: Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Banmynt: Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Banmynt: Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Banmynt: (Redacted)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 – åskådarpass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025-mynt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Silvermynt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Guldmynt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamantmynt: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Åskådarpass till Budapest 2025 + 3 souvenirpolletter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Souvenirpaket: Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Segrare vid StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist vid StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalist vid StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Kvartsfinalist vid StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalj för säsong fyra av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 års tjänstemedalj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Banmynt: Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Banmynt: Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Banmynt: Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Banmynt: Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Banmynt: Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Äkta Dust II-pin",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -589,6 +589,11 @@
|
||||
"name": "BLAST.tv Paris 2023 Çeyrek Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "İntikam Operasyonu Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "İntikam Operasyonu Mücadele Jetonu",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library Haritası Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Bravo Operasyonu Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Bravo Operasyonu Mücadele Jetonu",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege Haritası Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Anka Operasyonu Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Anka Operasyonu Mücadele Jetonu",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Altın Anka Operasyonu Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Firar Operasyonu Tam Erişim Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Firar Operasyonu Mücadele Jetonu",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Öncü Operasyonu Erişim Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Öncü Operasyonu Mücadele Jetonu",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Altın Öncü Operasyonu Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Kan Tazısı Operasyonu Erişim Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Kan Tazısı Operasyonu Mücadele Jetonu",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Yaban Ateşi Operasyonu Erişim Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Yaban Ateşi Operasyonu Mücadele Jetonu",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Hydra Operasyonu Erişim Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 Hizmet Madalyası",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Elmas Operasyon Hydra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Parçalanmış Ağ Operasyonu Seçkin Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Parçalanmış Ağ Operasyonu Mücadele Jetonu",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Parçalanmış Ağ Operasyonu Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 Jetonu",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 Pırlanta Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 Jetonu",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 Pırlanta Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 İzleyici Bileti + 3 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 Hizmet Madalyası",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Şehir 17 Broşu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Kırık Diş Operasyonu Seçkin Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Kırık Diş Operasyonu Mücadele Jetonu",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Girdap Operasyonu Seçkin Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Girdap Operasyonu Mücadele Jetonu",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Elmas Girdap Operasyonu Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 Jetonu",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 İzleyici Bileti + 3 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 Hizmet Madalyası",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 Jetonu",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 İzleyici Bileti + 3 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 Jetonu",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 İzleyici Bileti + 3 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 Hizmet Madalyası",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 Jetonu",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 İzleyici Bileti + 3 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 Hizmet Madalyası",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Kopenhag 2024 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Kopenhag 2024 Jetonu",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Kopenhag 2024 Elmas Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Kopenhag 2024 İzleyici Bileti + 3 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Kopenhag 2024 Hatıra Paketi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "PGL Kopenhag 2024 Şampiyonu",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Şanghay 2024 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Şanghay 2024 Jetonu",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Şanghay 2024 Elmas Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Şanghay 2024 İzleyici Bileti + 3 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Şanghay 2024 Hatıra Paketi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Perfect World Şanghay 2024 Şampiyonu",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Gümüş Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Altın Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Elmas Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 İzleyici Bileti + 3 Hatıra Paketi Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 Hatıra Paketi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 Şampiyonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 Yarı Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 Çeyrek Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Haritası Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(Gizli) Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapeşte 2025 İzleyici Bileti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapeşte 2025 Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapeşte 2025 Gümüş Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapeşte 2025 Altın Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapeşte 2025 Elmas Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapeşte 2025 İzleyici Bileti + 3 Hatıra Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapeşte 2025 Hatıra Paketi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "StarLadder Budapeşte 2025 Şampiyonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "StarLadder Budapeşte 2025 Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "StarLadder Budapeşte 2025 Yarı Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "StarLadder Budapeşte 2025 Çeyrek Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Seçkin Modu Dördüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 Hizmet Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Hakiki Dust II Broşu",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Чвертьфіналіст «BLAST.tv Париж 2023»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Перепустка на операцію «Відплата»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Монета учасника операції «Відплата»",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Монета мапи Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Перепустка на операцію «Браво»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Монета учасника операції «Браво»",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Монета мапи Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Перепустка на операцію «Фенікс»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Монета учасника операції «Фенікс»",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Золота монета операції «Фенікс»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Повна перепустка на операцію «Прорив»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Монета учасника операції «Прорив»",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Монета мапи Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Перепустка на операцію «Авангард»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Монета учасника операції «Авангард»",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Золота монета учасника операції «Авангард»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Перепустка на операцію «Дойда»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Монета учасника операції «Дойда»",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Медаль за службу 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Перепустка на операцію «Дике полум’я»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Монета учасника операції «Дике полум’я»",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Медаль за службу 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Перепустка на операцію «Гідра»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Медаль за службу 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Діамантова монета учасника операції «Гідра»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Преміальна перепустка на операцію «Розірвана мережа»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Монета учасника операції «Розірвана мережа»",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Діамантова монета учасника операції «Розірвана мережа»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Глядацька перепустка «Катовіце 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Монета «Катовіце 2019»",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Діамантова монета «Катовіце 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Глядацька перепустка «Берлін 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Монета «Берлін 2019»",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Діамантова монета «Берлін 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Глядацька перепустка «Берлін 2019» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Сувенірний жетон «Берлін 2019»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Медаль за службу 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Значок «Сіті-17»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Преміальна перепустка на операцію «Зламане ікло»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Монета учасника операції «Зламане ікло»",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Медаль за службу 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Преміальна перепустка на операцію «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Монета учасника операції «Хижі води»",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Діамантова монета учасника операції «Хижі води»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Глядацька перепустка «Стокгольм 2021»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Монета «Стокгольм 2021»",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Діамантова монета «Стокгольм 2021»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Глядацька перепустка «Стокгольм 2021» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Сувенірний жетон «Стокгольм 2021»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Медаль за службу 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Медаль за службу 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Глядацька перепустка «Антверпен 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Монета «Антверпен 2022»",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Діамантова монета «Антверпен 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Глядацька перепустка «Антверпен 2022» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Сувенірний жетон «Антверпен 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Глядацька перепустка «Ріо 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Монета «Ріо 2022»",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Діамантова монета «Ріо 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Глядацька перепустка «Ріо 2022» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Сувенірний жетон «Ріо 2022»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Медаль за службу 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Медаль за службу 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Глядацька перепустка «Париж 2023»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Монета «Париж 2023»",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Діамантова монета «Париж 2023»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Глядацька перепустка «Париж 2023» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Сувенірний жетон «Париж 2023»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Медаль за службу 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Медаль за службу 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Глядацька перепустка «Копенгаген 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Монета «Копенгаген 2024»",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Діамантова монета «Копенгаген 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Глядацька перепустка «Копенгаген 2024» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Сувенірний набір «Копенгаген 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Чемпіон «PGL Копенгаген 2024»",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Медаль за службу 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Глядацька перепустка «Шанхай 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Монета «Шанхай 2024»",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Діамантова монета «Шанхай 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Глядацька перепустка «Шанхай 2024» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Сувенірний набір «Шанхай 2024»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Чемпіон «Perfect World Шанхай 2024»",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Глядацька перепустка «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Срібна монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Золота монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Діамантова монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Глядацька перепустка «Остін 2025» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Сувенірний набір «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Чемпіон «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Фіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Півфіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Чвертьфіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета мапи Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета мапи Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета мапи Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета мапи Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета мапи Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Монета мапи Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Монета мапи Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Монета мапи Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Монета мапи Facade (вилучено)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Глядацька перепустка «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Монета «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Срібна монета «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Золота монета «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Діамантова монета «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Глядацька перепустка «Будапешт 2025» + 3 сувенірні жетони",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Сувенірний набір «Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Чемпіон «StarLadder StarLadder Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Фіналіст «StarLadder Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Півфіналіст «StarLadder Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Чвертьфіналіст «StarLadder Будапешт 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Premier Season Four Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Медаль за службу 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Значок «Dust II» (з першої партії)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Lọt vào tứ kết tại giải BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Vé chiến dịch Payback",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Huy chương thử thách chiến dịch Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Huy chương bản đồ - Library",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Vé chiến dịch Bravo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Huy chương thử thách chiến dịch Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Huy chương bản đồ - Siege",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Vé chiến dịch Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Huy chương thử thách chiến dịch Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Huy chương vàng chiến dịch Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Vé truy cập tất cả chiến dịch Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Huy chương thử thách chiến dịch Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Huy chương bản đồ - Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Vé chiến dịch Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Huy chương thử thách chiến dịch Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Huy chương vàng chiến dịch Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Vé chiến dịch Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Huy chương thử thách chiến dịch Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Huy chương phục vụ 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Vé chiến dịch Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Huy chương thử thách chiến dịch Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Huy chương phục vụ 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Vé chiến dịch Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Huy chương phục vụ 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Huy chương kim cương chiến dịch Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Vé chiến dịch Shattered Web cao cấp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Huy hiệu thử thách Chiến dịch Shattered Web",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Huy hiệu kim cương chiến dịch Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Vé xem Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Huy chương Katowice 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Huy chương kim cương Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Vé xem Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Huy chương Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"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": "4627",
|
||||
"name": "Vé xem Berlin 2019 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Token lưu niệm Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Huy chương phục vụ 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Huy hiệu City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Vé chiến dịch Broken Fang cao cấp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Huy chương thử thách chiến dịch Broken Fang",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Huy chương phục vụ 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Vé Premium chiến dịch Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Huy chương thử thách chiến dịch Riptide",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"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": "4796",
|
||||
"name": "Vé xem giải Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Huy chương Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Huy chương kim cương Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Vé xem giải Stockholm 2021 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Token lưu niệm Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Huy chương phục vụ 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Huy chương phục vụ 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Vé xem giải Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Huy chương Antwerp 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Huy chương kim cương Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Vé xem giải Antwerp 2022 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Token lưu niệm Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Vé xem giải Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Huy chương Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Huy chương kim cương Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Vé xem Rio 2022 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Token lưu niệm Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Huy chương phục vụ 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Huy chương phục vụ 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Vé xem giải Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Huy chương Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Huy chương kim cương Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Vé xem Paris 2023 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Token lưu niệm Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Huy chương phục vụ 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Huy chương phục vụ 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Vé xem Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Huy chương Copenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Huy chương kim cương Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Vé xem Copenhagen 2024 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Gói lưu niệm Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Đội vô địch giải PGL Copenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Huy chương phục vụ 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Vé xem Thượng Hải 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Huy chương Thượng Hải 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Huy chương kim cương Thượng Hải 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Vé xem Thượng Hải 2024 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Gói lưu niệm Thượng Hải 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Đội vô địch giải Perfect World Thượng Hải 2024",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Vé xem Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Huy chương Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Huy chương bạc Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Huy chương vàng Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Huy chương kim cương Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Vé xem Austin 2025 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Gói lưu niệm | Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Nhà vô địch giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Lọt vào chung kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Lọt vào bán kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Lọt vào tứ kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Huy chương bản đồ - Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Huy chương bản đồ - Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Huy chương bản đồ - Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Huy chương bản đồ - Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Huy chương bản đồ - Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Huy chương bản đồ - Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Huy chương bản đồ - Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Huy chương bản đồ - Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Huy chương bản đồ - (BÔI ĐEN)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Vé xem Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Huy chương Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Huy chương bạc Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Huy chương vàng Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Huy chương kim cương Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Vé xem Budapest 2025 + 3 token lưu niệm",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Gói lưu niệm | Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Nhà vô địch StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Lọt vào chung kết giải StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Lọt vào bán kết giải StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Lọt vào tứ kết giải StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Huy chương Premier mùa 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Huy chương phục vụ 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Huy chương bản đồ - Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Huy chương bản đồ - Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Huy chương bản đồ - Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Huy chương bản đồ - Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Huy chương bản đồ - Sanctum",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Huy hiệu Dust II (Chính hãng)",
|
||||
|
||||
@@ -516,7 +516,7 @@
|
||||
},
|
||||
{
|
||||
"id": "980",
|
||||
"name": "2021年 PGL 斯德哥尔摩锦标赛冠军赛选手",
|
||||
"name": "2021年 PGL 斯德哥尔摩锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-980.png"
|
||||
},
|
||||
{
|
||||
@@ -536,7 +536,7 @@
|
||||
},
|
||||
{
|
||||
"id": "984",
|
||||
"name": "2022年 PGL 安特卫普锦标赛冠军赛选手",
|
||||
"name": "2022年 PGL 安特卫普锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-984.png"
|
||||
},
|
||||
{
|
||||
@@ -576,7 +576,7 @@
|
||||
},
|
||||
{
|
||||
"id": "993",
|
||||
"name": "2023年 BLAST.tv 巴黎锦标赛冠军赛选手",
|
||||
"name": "2023年 BLAST.tv 巴黎锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-993.png"
|
||||
},
|
||||
{
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "2023年 BLAST.tv 巴黎锦标赛四分之一决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "“回赠大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "“回赠大行动”挑战币",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "火拼图书馆地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "“英勇大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "“英勇大行动”挑战币",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "围攻之势地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "“凤凰大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "“凤凰大行动”挑战币",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "“凤凰大行动”金币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "“突围大行动”全通证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "“突围大行动”挑战币",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "圣杯村庄地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "“先锋大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "“先锋大行动”挑战币",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "“先锋大行动”金币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "“血猎大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "“血猎大行动”挑战币",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "“野火大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "“野火大行动”挑战币",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "“九头蛇大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 年服役勋章",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "“九头蛇大行动”钻石币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "“裂网大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "“裂网大行动”挑战币",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "“裂网大行动”钻石币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "卡托维兹 2019 观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "卡托维兹 2019 硬币",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "卡托维兹 2019 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "柏林2019观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "柏林 2019 硬币",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "柏林 2019 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "柏林2019观众通行证+3枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "柏林2019纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 年服役勋章",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "17号城市胸章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "“狂牙大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "“狂牙大行动”挑战币",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "“激流大行动”通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "“激流大行动”挑战币",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "“激流大行动”钻石币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "斯德哥尔摩 2021 观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "斯德哥尔摩 2021 硬币",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "斯德哥尔摩 2021 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "斯德哥尔摩 2021 观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "斯德哥尔摩 2021 纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 年服役勋章",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "2022年安特卫普锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "安特卫普 2022 硬币",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "安特卫普 2022 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "安特卫普 2022 观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "安特卫普 2022 纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "2022年里约热内卢锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "里约 2022 硬币",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "里约 2022 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "里约 2022 观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "里约 2022 纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 年服役勋章",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "巴黎 2023 观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "巴黎 2023 硬币",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "巴黎 2023 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "巴黎 2023 观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "巴黎 2023 纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 年服役勋章",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "2024年哥本哈根锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "哥本哈根 2024 硬币",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "哥本哈根 2024 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "2024年哥本哈根锦标赛观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "2024年哥本哈根锦标赛纪念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "2024年 PGL 哥本哈根锦标赛冠军",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "2024年上海锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "上海 2024 硬币",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "上海 2024 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "上海 2024 观众通行证 + 3 枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "2024年上海锦标赛纪念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "2024年 完美世界 锦标赛冠军",
|
||||
@@ -1721,17 +1886,17 @@
|
||||
},
|
||||
{
|
||||
"id": "4975",
|
||||
"name": "2024年 完美世界 锦标赛决赛选手",
|
||||
"name": "2024年 完美世界 上海锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4975.png"
|
||||
},
|
||||
{
|
||||
"id": "4976",
|
||||
"name": "2024年 完美世界 锦标赛半决赛选手",
|
||||
"name": "2024年 完美世界 上海锦标赛半决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4976.png"
|
||||
},
|
||||
{
|
||||
"id": "4977",
|
||||
"name": "2024年 完美世界 锦标赛四分之一决赛选手",
|
||||
"name": "2024年 完美世界 上海锦标赛四分之一决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4977.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "2025年奥斯汀锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "奥斯汀 2025 硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "奥斯汀 2025 银色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "奥斯汀 2025 金色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "奥斯汀 2025 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "2025年奥斯汀锦标赛观众通行证+3枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "2025年奥斯汀锦标赛纪念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛冠军",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛半决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛四分之一决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "办公大楼地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "侏罗地图硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "圣杯地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "多格镇地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "酿酒厂地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "黄金之岛地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "巅峰对决地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "佩纳宫地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(已编辑)地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "2025年布达佩斯锦标赛观众通行证",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "布达佩斯 2025 硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "布达佩斯 2025 银色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "布达佩斯 2025 金色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "布达佩斯 2025 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "2025年布达佩斯锦标赛观众通行证+3枚纪念品代币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "2025年布达佩斯锦标赛纪念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "2025年 StarLadder 布达佩斯锦标赛冠军",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "2025年 StarLadder 布达佩斯锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "2025年 StarLadder 布达佩斯锦标赛半决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "2025年 StarLadder 布达佩斯锦标赛四分之一决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "优先模式第四赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 年服役勋章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "恶魔岛地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "钢铁要塞地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "阿尔卑斯地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "波塞冬地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "圣堂地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "炙热沙城 II 胸章(纯正)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "BLAST.tv Paris 2023 的前八強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "《回饋行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "《回饋行動》挑戰幣",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "《Bravo 行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "《Bravo 行動》挑戰幣",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "《鳳凰行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "《鳳凰行動》挑戰幣",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "《鳳凰行動》金幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "《突圍行動》全通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "《突圍行動》挑戰幣",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "《先鋒行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "《先鋒行動》挑戰幣",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "《先鋒行動》金幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "《獵犬行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "《獵犬行動》挑戰幣",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "2015 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "《野火行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "《野火行動》挑戰幣",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "2016 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "《九頭蛇行動》通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "2017 年服役勳章",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "《九頭蛇行動》鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "《裂網行動》高級通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "《裂網行動》挑戰幣",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "《裂網行動》鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Katowice 2019 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019 硬幣",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Katowice 2019 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Berlin 2019 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019 硬幣",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Berlin 2019 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Berlin 2019 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlin 2019 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "2020 年服役勳章",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "17 號城徽章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "「狂牙行動」高級通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "「狂牙行動」挑戰幣",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "2021 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "《猛潮行動》高級通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "《猛潮行動》挑戰幣",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "《猛潮行動》鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Stockholm 2021 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021 硬幣",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Stockholm 2021 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Stockholm 2021 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Stockholm 2021 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "2022 年服役勳章",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "2022 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerp 2022 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022 硬幣",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Antwerp 2022 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Antwerp 2022 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerp 2022 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022 硬幣",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Rio 2022 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Rio 2022 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "2023 年服役勳章",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "2023 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Paris 2023 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023 硬幣",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Paris 2023 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Paris 2023 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Paris 2023 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "2024 年服役勳章",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "2024 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Copenhagen 2024 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024 硬幣",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Copenhagen 2024 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Copenhagen 2024 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Copenhagen 2024 紀念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "PGL Copenhagen 2024 冠軍",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "2025 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Shanghai 2024 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024 硬幣",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Shanghai 2024 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Shanghai 2024 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024 紀念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Perfect World Shanghai 2024 冠軍",
|
||||
@@ -1939,6 +2104,576 @@
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Austin 2025 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 銀幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 金幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Austin 2025 觀眾通行證 + 3 枚紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025 紀念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Champion at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 的亞軍",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 的前四強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 的前八強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(已刪除)地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Budapest 2025 觀眾通行證",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Budapest 2025 硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Budapest 2025 銀幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Budapest 2025 金幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Budapest 2025 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Budapest 2025 觀眾通行證 + 3 紀念品代幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Budapest 2025 紀念包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "StarLadder Budapest 2025 冠軍",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "StarLadder Budapest 2025 決賽選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "StarLadder Budapest 2025 準決賽選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "StarLadder Budapest 2025 前八強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "優先權第 4 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5269.png"
|
||||
},
|
||||
{
|
||||
"id": "5270",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "2026 年服役勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5275.png"
|
||||
},
|
||||
{
|
||||
"id": "5276",
|
||||
"name": "Warden 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Stronghold 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Alpine 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Poseidon 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Sanctum 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5280.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "正統 Dust II 徽章",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Състезателно зелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kørehandsker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshandsker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schwarze Fliege"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Σπορ γάντια | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Ajohanskat | Smokki"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Gants de pilote (★) | Smoking"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Fekete Nyakkendő"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레이싱 그린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Rijhandschoenen | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandschoenen | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kjørehansker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshansker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Водительские перчатки | Гоночный зелёный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Förarhandskar | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandskar | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гоночний зелений"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 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": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"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": 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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"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": "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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "驾驶手套(★) | 墨绿色调"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"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": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 駕駛手套 | 英式賽車綠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.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": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.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",
|
||||
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Джунджурия | Мъничък Саскуоч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Джунджурия | Мъничко проклятие",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Джунджурия | Мъничко змийче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Джунджурия | Мъничко баскетболистче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Джунджурия | Мъртва тежест",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Джунджурия | Мъничко бодилче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Джунджурия | Мънички хлебчета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Джунджурия | Мъничък пушач",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Джунджурия | Мъничка странност",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Джунджурия | Мъничък щастливец",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Джунджурия | Магматичност",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Джунджурия | Мъничко кикотене",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Джунджурия | Живак",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Джунджурия | Мъничко № 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Джунджурия | Пинятичка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Джунджурия | Джобна ледена близалка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Джунджурия | Мъничък герой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Джунджурия | Мъничък бивник",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Джунджурия | Мъничко лепкоч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Джунджурия | Дръжте се спокойно",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Джунджурия | Мъничко винено",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Джунджурия | Мънички мигове",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Джунджурия | Мъничко духче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Джунджурия | Мъничко чуруликащо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Джунджурия | Голям акъл",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Джунджурия | Биомеханика",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Джунджурия | Оплискана котка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Джунджурия | Непреклонен",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Джунджурия | Пухчо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Джунджурия | Издялканото типче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Джунджурия | Мъничко дзен",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Джунджурия | Мъничко лицево повдигане",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Джунджурия | Мъничък хапльо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Джунджурия | Мъничко кърваво",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Джунджурия | Мъничка кнедла",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Джунджурия | Бомбен графит",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Джунджурия | Блестяща бомба",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Джунджурия | Мъничко екологично",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Джунджурия | Гладни очи",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Джунджурия | Всевиждащо око",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Джунджурия | Мъничко йети",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Джунджурия | Топка №8 на лидера в играта",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Джунджурия | Заслепяваща бомба",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Джунджурия | Мъничък пъкъл",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Джунджурия | Бутанова дружка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Джунджурия | Д-р Брайън",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Přívěsek | Lil' Squatch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Přívěsek | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Přívěsek | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Přívěsek | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Přívěsek | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Přívěsek | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Přívěsek | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Přívěsek | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Přívěsek | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Přívěsek | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Přívěsek | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Přívěsek | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Přívěsek | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Přívěsek | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Přívěsek | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Přívěsek | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Přívěsek | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Přívěsek | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Přívěsek | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Přívěsek | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Přívěsek | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Přívěsek | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Přívěsek | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Přívěsek | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Přívěsek | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Přívěsek | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Přívěsek | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Přívěsek | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Přívěsek | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Přívěsek | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Přívěsek | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Přívěsek | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Přívěsek | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Přívěsek | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Přívěsek | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Přívěsek | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Přívěsek | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Přívěsek | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Přívěsek | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Přívěsek | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Přívěsek | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Přívěsek | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Přívěsek | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Přívěsek | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Přívěsek | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Přívěsek | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Vedhæng | Lil' Squatch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Vedhæng | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Vedhæng | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Vedhæng | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Vedhæng | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Vedhæng | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Vedhæng | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Vedhæng | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Vedhæng | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Vedhæng | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Vedhæng | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Vedhæng | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Vedhæng | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Vedhæng | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Vedhæng | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Vedhæng | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Vedhæng | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Vedhæng | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Vedhæng | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Vedhæng | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Vedhæng | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Vedhæng | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Vedhæng | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Vedhæng | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Vedhæng | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Vedhæng | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Vedhæng | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Vedhæng | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Vedhæng | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Vedhæng | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Vedhæng | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Vedhæng | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Vedhæng | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Vedhæng | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Vedhæng | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Vedhæng | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Vedhæng | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Vedhæng | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Vedhæng | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Vedhæng | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Vedhæng | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Vedhæng | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Vedhæng | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Vedhæng | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Vedhæng | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Vedhæng | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Anhänger | Kleiner Bigfoot",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Anhänger | Kleiner Verfluchter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Anhänger | Kleine Feuerschlange",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Anhänger | Kleiner Korbjäger",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Anhänger | Leichensack",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Anhänger | Kleiner Kaktus",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Anhänger | Kleiner Fast-Food-Fan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Anhänger | Kleiner Raucher",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Anhänger | Kleines Grauen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Anhänger | Kleines Glückskind",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Anhänger | Magmawesen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Anhänger | Kleiner Krakeeler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Anhänger | Quecksilber",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Anhänger | Kleiner Kritzler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Anhänger | Kleine Piñata",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Anhänger | Raketeneis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Anhänger | Kleiner Held",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Anhänger | Kleiner Stoßzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Anhänger | Kleines Schleimmonster",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Anhänger | Locker bleiben",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Anhänger | Kleiner Sommelier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Anhänger | Kleiner Fotograf",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Anhänger | Kleiner Geist",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Anhänger | Kleiner Piepmatz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Anhänger | Kluger Kopf",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Anhänger | Biomechaniker",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Anhänger | Kratze-Katze",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Anhänger | Draufgänger",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Anhänger | Knuddelmonster",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Anhänger | Schnitzer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Anhänger | Kleiner Zen-Meister",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Anhänger | Gesichtsstraffung",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Anhänger | Kleiner Wadenbeißer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Anhänger | Kleiner Schlitzer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Anhänger | Kleiner Kloß",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Anhänger | Bomben-Graffito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Anhänger | Glitzerbombe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Anhänger | Kleiner Naturfreund",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Anhänger | Hungrige Augen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Anhänger | Augapfel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Anhänger | Kleiner Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Anhänger | 8-Ball-IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Anhänger | Blitzbombe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Anhänger | Kleiner Feuerteufel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Anhänger | Butangaskartusche",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Anhänger | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Γούρι | Lil' Squatch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Γούρι | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Γούρι | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Γούρι | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Γούρι | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Γούρι | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Γούρι | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Γούρι | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Γούρι | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Γούρι | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Γούρι | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Γούρι | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Γούρι | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Γούρι | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Γούρι | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Γούρι | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Γούρι | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Γούρι | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Γούρι | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Γούρι | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Γούρι | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Γούρι | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Γούρι | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Γούρι | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Γούρι | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Γούρι | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Γούρι | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Γούρι | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Γούρι | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Γούρι | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Γούρι | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Γούρι | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Γούρι | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Γούρι | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Γούρι | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Γούρι | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Γούρι | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Γούρι | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Γούρι | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Γούρι | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Γούρι | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Γούρι | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Γούρι | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Γούρι | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Γούρι | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Γούρι | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Charm | Lil' Squatch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Charm | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Charm | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Charm | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Charm | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Charm | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Charm | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Charm | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Charm | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Charm | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Charm | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Charm | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Charm | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Charm | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Charm | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Charm | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Charm | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Charm | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Charm | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Charm | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Charm | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Charm | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Charm | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Charm | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Charm | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Charm | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Charm | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Charm | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Charm | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Charm | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Charm | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Charm | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Charm | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Charm | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Charm | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Charm | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Charm | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Charm | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Charm | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Charm | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Charm | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Charm | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Charm | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Charm | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Charm | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Charm | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Colgante | Miniyeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Colgante | Conjurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Colgante | Serpientita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Colgante | Pelotito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Colgante | Peso muerto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Colgante | Pinchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Colgante | Panecitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Colgante | Ahumadito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Colgante | Arcancito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Colgante | Contentito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Colgante | Magmatudito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Colgante | Carcajadita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Colgante | Mercurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Colgante | Lapicito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Colgante | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Colgante | Pirulito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Colgante | Heroíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Colgante | Colmillito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Colgante | Viscosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Colgante | Surfito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Colgante | Vinito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Colgante | Momentitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Colgante | Sustito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Colgante | Piíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Colgante | Cerebrote",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Colgante | Biomecánico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Colgante | Gato salpicón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Colgante | Bravucón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Colgante | Rugosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Colgante | Talladito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Colgante | Zenito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Colgante | Liftingcito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Colgante | Chompercito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Colgante | Sangrientito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Colgante | Dumplingcito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Colgante | Tag explosivo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Colgante | Bomba de purpurina",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Colgante | Ecologito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Colgante | Ojos hambrientos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Colgante | Ojo de bola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Colgante | Yetito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Colgante | Bola 8 del líder",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Colgante | Bomba cegadora",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Colgante | Infiernito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Colgante | Colega de butano",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Colgante | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,230 @@
|
||||
"id": "33",
|
||||
"name": "Colgante | Miniyeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"name": "Colgante | Maldicionita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "39",
|
||||
"name": "Colgante | Serpientita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "40",
|
||||
"name": "Colgante | Pelotito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "41",
|
||||
"name": "Colgante | Peso muerto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "42",
|
||||
"name": "Colgante | Pinchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "43",
|
||||
"name": "Colgante | Panecitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "44",
|
||||
"name": "Colgante | Humito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "45",
|
||||
"name": "Colgante | Arcancito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "46",
|
||||
"name": "Colgante | Contentico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "47",
|
||||
"name": "Colgante | Magmatudito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "48",
|
||||
"name": "Colgante | Carcajadita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "49",
|
||||
"name": "Colgante | Mercurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "50",
|
||||
"name": "Colgante | Lapicito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "51",
|
||||
"name": "Colgante | Piñatica",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "52",
|
||||
"name": "Colgante | Paletito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "53",
|
||||
"name": "Colgante | Heroíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "54",
|
||||
"name": "Colgante | Colmillito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "55",
|
||||
"name": "Colgante | Viscosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "56",
|
||||
"name": "Colgante | Relajadito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Colgante | Corchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "58",
|
||||
"name": "Colgante | Momenticos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "59",
|
||||
"name": "Colgante | Sustico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "60",
|
||||
"name": "Colgante | Pollito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "61",
|
||||
"name": "Colgante | Cerebrote",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "62",
|
||||
"name": "Colgante | Biomecánico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "63",
|
||||
"name": "Colgante | Gato salpicador",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "64",
|
||||
"name": "Colgante | Bravucón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "65",
|
||||
"name": "Colgante | Rugosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "66",
|
||||
"name": "Colgante | Talladito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "67",
|
||||
"name": "Colgante | Zenito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "68",
|
||||
"name": "Colgante | Estiradito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "69",
|
||||
"name": "Colgante | Chompercito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Colgante | Sangrientito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Colgante | Dumplingcito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Colgante | Tag explosivo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Colgante | Bomba de brillantina",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Colgante | Ecologito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Colgante | Ojos hambrientos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Colgante | Ojo de bola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Colgante | Yetito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Colgante | Bola 8 del lider",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Colgante | Bomba cegadora",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Colgante | Infiernito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Colgante | Compañero de butano",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Colgante | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user