mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-21 11:28:13 +00:00
Compare commits
20 Commits
3e5ff759c7
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8bdc7b354 | ||
|
|
4df99370c2 | ||
|
|
9e59456c9f | ||
|
|
1f03e1c4f0 | ||
|
|
129b34f5c0 | ||
|
|
fbf473b893 | ||
|
|
10a4691429 | ||
|
|
ae8fb3b677 | ||
|
|
1ef12ed6b2 | ||
|
|
3f174a5013 | ||
|
|
b3f42598e7 | ||
|
|
2079ef5393 | ||
|
|
a633873980 | ||
|
|
d7af2fea89 | ||
|
|
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>
|
||||
@@ -13,3 +13,4 @@ define('STEAM_API_KEY', '');
|
||||
define('STEAM_DOMAIN_NAME', '');
|
||||
define('STEAM_LOGOUT_PAGE', '');
|
||||
define('STEAM_LOGIN_PAGE', '');
|
||||
|
||||
|
||||
@@ -1,159 +1,95 @@
|
||||
<?php
|
||||
class UtilsClass
|
||||
{
|
||||
// Knife defindexes as constants for better maintainability
|
||||
private const KNIFE_DEFINDEXES = [
|
||||
500, 503, 505, 506, 507, 508, 509, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526
|
||||
];
|
||||
|
||||
// Knife mapping for better maintainability
|
||||
private const KNIFE_MAPPING = [
|
||||
500 => 'weapon_bayonet',
|
||||
503 => 'weapon_knife_css',
|
||||
505 => 'weapon_knife_flip',
|
||||
506 => 'weapon_knife_gut',
|
||||
507 => 'weapon_knife_karambit',
|
||||
508 => 'weapon_knife_m9_bayonet',
|
||||
509 => 'weapon_knife_tactical',
|
||||
512 => 'weapon_knife_falchion',
|
||||
514 => 'weapon_knife_survival_bowie',
|
||||
515 => 'weapon_knife_butterfly',
|
||||
516 => 'weapon_knife_push',
|
||||
517 => 'weapon_knife_cord',
|
||||
518 => 'weapon_knife_canis',
|
||||
519 => 'weapon_knife_ursus',
|
||||
520 => 'weapon_knife_gypsy_jackknife',
|
||||
521 => 'weapon_knife_outdoor',
|
||||
522 => 'weapon_knife_stiletto',
|
||||
523 => 'weapon_knife_widowmaker',
|
||||
525 => 'weapon_knife_skeleton',
|
||||
526 => 'weapon_knife_css'
|
||||
];
|
||||
|
||||
// Weapon categories for better organization
|
||||
private const WEAPON_CATEGORIES = [
|
||||
'Rifles' => [7, 8, 10, 13, 16, 60, 39, 40, 38],
|
||||
'Pistols' => [1, 2, 3, 4, 30, 32, 36, 61, 63, 64],
|
||||
'SMGs' => [17, 19, 24, 26, 33, 34],
|
||||
'Shotguns' => [25, 27, 29, 35],
|
||||
'Snipers' => [9, 11, 38],
|
||||
'Machine Guns' => [14, 28],
|
||||
'Grenades' => [43, 44, 45, 46, 47, 48]
|
||||
];
|
||||
|
||||
private static $skinCache = null;
|
||||
private static $weaponCache = null;
|
||||
private static $knifeCache = null;
|
||||
|
||||
public static function getKnifeDefindexes(): array
|
||||
{
|
||||
return self::KNIFE_DEFINDEXES;
|
||||
}
|
||||
|
||||
public static function getKnifeMapping(): array
|
||||
{
|
||||
return self::KNIFE_MAPPING;
|
||||
}
|
||||
|
||||
public static function getWeaponCategories(): array
|
||||
{
|
||||
return self::WEAPON_CATEGORIES;
|
||||
}
|
||||
|
||||
public static function skinsFromJson(): array
|
||||
{
|
||||
if (self::$skinCache !== null) {
|
||||
return self::$skinCache;
|
||||
}
|
||||
|
||||
$skins = [];
|
||||
$jsonFile = __DIR__ . "/../data/" . SKIN_LANGUAGE . ".json";
|
||||
|
||||
if (!file_exists($jsonFile)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$json = json_decode(file_get_contents($jsonFile), true);
|
||||
if (!$json) {
|
||||
return [];
|
||||
}
|
||||
$json = json_decode(file_get_contents(__DIR__ . "/../data/".SKIN_LANGUAGE.".json"), true);
|
||||
|
||||
foreach ($json as $skin) {
|
||||
$defindex = (int) $skin['weapon_defindex'];
|
||||
$paintId = (int) $skin['paint'];
|
||||
|
||||
$skins[$defindex][$paintId] = [
|
||||
$skins[(int) $skin['weapon_defindex']][(int) $skin['paint']] = [
|
||||
'weapon_name' => $skin['weapon_name'],
|
||||
'paint_name' => $skin['paint_name'],
|
||||
'image_url' => $skin['image'],
|
||||
];
|
||||
}
|
||||
|
||||
self::$skinCache = $skins;
|
||||
return $skins;
|
||||
}
|
||||
|
||||
public static function getWeaponsFromArray(): array
|
||||
public static function getWeaponsFromArray()
|
||||
{
|
||||
if (self::$weaponCache !== null) {
|
||||
return self::$weaponCache;
|
||||
}
|
||||
|
||||
$weapons = [];
|
||||
$skins = self::skinsFromJson();
|
||||
$temp = self::skinsFromJson();
|
||||
|
||||
foreach ($skins as $defindex => $skinList) {
|
||||
if (!isset($weapons[$defindex]) && isset($skinList[0])) {
|
||||
$weapons[$defindex] = [
|
||||
'weapon_name' => $skinList[0]['weapon_name'],
|
||||
'paint_name' => $skinList[0]['paint_name'],
|
||||
'image_url' => $skinList[0]['image_url'],
|
||||
];
|
||||
}
|
||||
foreach ($temp as $key => $value) {
|
||||
if (key_exists($key, $weapons))
|
||||
continue;
|
||||
|
||||
$weapons[$key] = [
|
||||
'weapon_name' => $value[0]['weapon_name'],
|
||||
'paint_name' => $value[0]['paint_name'],
|
||||
'image_url' => $value[0]['image_url'],
|
||||
];
|
||||
}
|
||||
|
||||
self::$weaponCache = $weapons;
|
||||
return $weapons;
|
||||
}
|
||||
|
||||
public static function getKnifeTypes(): array
|
||||
public static function getKnifeTypes()
|
||||
{
|
||||
if (self::$knifeCache !== null) {
|
||||
return self::$knifeCache;
|
||||
}
|
||||
|
||||
$knifes = [];
|
||||
$weapons = self::getWeaponsFromArray();
|
||||
$temp = self::getWeaponsFromArray();
|
||||
|
||||
foreach (self::KNIFE_DEFINDEXES as $defindex) {
|
||||
if (isset($weapons[$defindex])) {
|
||||
$weapon = $weapons[$defindex];
|
||||
$knifes[$defindex] = [
|
||||
'weapon_name' => $weapon['weapon_name'],
|
||||
'paint_name' => rtrim(explode("|", $weapon['paint_name'])[0]),
|
||||
'image_url' => $weapon['image_url'],
|
||||
];
|
||||
}
|
||||
foreach ($temp as $key => $weapon) {
|
||||
if (
|
||||
!in_array($key, [
|
||||
500,
|
||||
503,
|
||||
505,
|
||||
506,
|
||||
507,
|
||||
508,
|
||||
509,
|
||||
512,
|
||||
514,
|
||||
515,
|
||||
516,
|
||||
517,
|
||||
518,
|
||||
519,
|
||||
520,
|
||||
521,
|
||||
522,
|
||||
523,
|
||||
525,
|
||||
526
|
||||
])
|
||||
)
|
||||
continue;
|
||||
|
||||
$knifes[$key] = [
|
||||
'weapon_name' => $weapon['weapon_name'],
|
||||
'paint_name' => rtrim(explode("|", $weapon['paint_name'])[0]),
|
||||
'image_url' => $weapon['image_url'],
|
||||
];
|
||||
$knifes[0] = [
|
||||
'weapon_name' => "weapon_knife",
|
||||
'paint_name' => "Default knife",
|
||||
'image_url' => "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife.png",
|
||||
];
|
||||
}
|
||||
|
||||
// Add default knife
|
||||
$knifes[0] = [
|
||||
'weapon_name' => "weapon_knife",
|
||||
'paint_name' => "Default knife",
|
||||
'image_url' => "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/weapon_knife.png",
|
||||
];
|
||||
|
||||
ksort($knifes);
|
||||
self::$knifeCache = $knifes;
|
||||
return $knifes;
|
||||
}
|
||||
|
||||
public static function getSelectedSkins(array $queryResult): array
|
||||
public static function getSelectedSkins(array $temp)
|
||||
{
|
||||
$selected = [];
|
||||
|
||||
foreach ($queryResult as $weapon) {
|
||||
$selected[$weapon['weapon_defindex']] = [
|
||||
foreach ($temp as $weapon) {
|
||||
$selected[$weapon['weapon_defindex']] = [
|
||||
'weapon_paint_id' => $weapon['weapon_paint_id'],
|
||||
'weapon_seed' => $weapon['weapon_seed'],
|
||||
'weapon_wear' => $weapon['weapon_wear'],
|
||||
@@ -162,23 +98,4 @@ class UtilsClass
|
||||
|
||||
return $selected;
|
||||
}
|
||||
|
||||
public static function isKnifeDefindex(int $defindex): bool
|
||||
{
|
||||
return in_array($defindex, self::KNIFE_DEFINDEXES);
|
||||
}
|
||||
|
||||
public static function isKnifeWeapon(array $weapon): bool
|
||||
{
|
||||
return $weapon['weapon_name'] === 'weapon_knife' ||
|
||||
strpos($weapon['weapon_name'], 'knife') !== false ||
|
||||
strpos($weapon['paint_name'], '★') !== false;
|
||||
}
|
||||
|
||||
public static function clearCache(): void
|
||||
{
|
||||
self::$skinCache = null;
|
||||
self::$weaponCache = null;
|
||||
self::$knifeCache = null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,304 +0,0 @@
|
||||
<?php
|
||||
require_once 'utils.php';
|
||||
require_once 'database.php';
|
||||
|
||||
class WeaponHandler
|
||||
{
|
||||
private $db;
|
||||
private $steamid;
|
||||
|
||||
public function __construct($steamid)
|
||||
{
|
||||
$this->db = new DataBase();
|
||||
$this->steamid = $steamid;
|
||||
}
|
||||
|
||||
public function handleWeaponUpdate($postData): bool
|
||||
{
|
||||
if (!isset($postData['forma'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$formaParts = explode("-", $postData['forma']);
|
||||
|
||||
if ($formaParts[0] === "knife") {
|
||||
return $this->handleKnifeSelection($formaParts[1]);
|
||||
} else {
|
||||
return $this->handleWeaponSkin($formaParts, $postData);
|
||||
}
|
||||
}
|
||||
|
||||
private function handleKnifeSelection($knifeId): bool
|
||||
{
|
||||
$knifes = UtilsClass::getKnifeTypes();
|
||||
|
||||
if (!isset($knifes[$knifeId])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$knifeData = $knifes[$knifeId];
|
||||
|
||||
// Clear existing knife data
|
||||
$this->clearKnifeData();
|
||||
|
||||
// Set new knife selection (insert for both teams separately)
|
||||
$this->db->query(
|
||||
"INSERT INTO `wp_player_knife` (`steamid`, `knife`, `weapon_team`) VALUES (:steamid, :knife, 2)",
|
||||
["steamid" => $this->steamid, "knife" => $knifeData['weapon_name']]
|
||||
);
|
||||
|
||||
$this->db->query(
|
||||
"INSERT INTO `wp_player_knife` (`steamid`, `knife`, `weapon_team`) VALUES (:steamid, :knife, 3)",
|
||||
["steamid" => $this->steamid, "knife" => $knifeData['weapon_name']]
|
||||
);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private function handleWeaponSkin($formaParts, $postData): bool
|
||||
{
|
||||
$defindex = $formaParts[0];
|
||||
$paintId = $formaParts[1];
|
||||
|
||||
$skins = UtilsClass::skinsFromJson();
|
||||
|
||||
if (!isset($skins[$defindex][$paintId]) ||
|
||||
!isset($postData['wear']) ||
|
||||
!isset($postData['seed'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$wear = $this->validateWear($postData['wear']);
|
||||
$seed = $this->validateSeed($postData['seed']);
|
||||
|
||||
if ($wear === false || $seed === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Handle knife skins
|
||||
if (UtilsClass::isKnifeDefindex($defindex)) {
|
||||
$this->handleKnifeSkin($defindex, $paintId, $wear, $seed);
|
||||
} else {
|
||||
$this->handleRegularWeaponSkin($defindex, $paintId, $wear, $seed);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private function handleKnifeSkin($defindex, $paintId, $wear, $seed): void
|
||||
{
|
||||
$knifeMapping = UtilsClass::getKnifeMapping();
|
||||
|
||||
// Clear existing knife data
|
||||
$this->clearKnifeData();
|
||||
|
||||
// Clear other knife skins
|
||||
$knifeDefindexes = UtilsClass::getKnifeDefindexes();
|
||||
foreach ($knifeDefindexes as $knifeDefindex) {
|
||||
if ($knifeDefindex != $defindex) {
|
||||
$this->db->query(
|
||||
"DELETE FROM `wp_player_skins` WHERE `steamid` = :steamid AND `weapon_defindex` = :weapon_defindex",
|
||||
["steamid" => $this->steamid, "weapon_defindex" => $knifeDefindex]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Set knife type in wp_player_knife table
|
||||
if (isset($knifeMapping[$defindex])) {
|
||||
$this->db->query(
|
||||
"INSERT INTO `wp_player_knife` (`steamid`, `knife`, `weapon_team`) VALUES (:steamid, :knife, 2)",
|
||||
["steamid" => $this->steamid, "knife" => $knifeMapping[$defindex]]
|
||||
);
|
||||
|
||||
$this->db->query(
|
||||
"INSERT INTO `wp_player_knife` (`steamid`, `knife`, `weapon_team`) VALUES (:steamid, :knife, 3)",
|
||||
["steamid" => $this->steamid, "knife" => $knifeMapping[$defindex]]
|
||||
);
|
||||
}
|
||||
|
||||
// Set knife skin
|
||||
$this->upsertWeaponSkin($defindex, $paintId, $wear, $seed);
|
||||
}
|
||||
|
||||
private function handleRegularWeaponSkin($defindex, $paintId, $wear, $seed): void
|
||||
{
|
||||
$this->upsertWeaponSkin($defindex, $paintId, $wear, $seed);
|
||||
}
|
||||
|
||||
private function upsertWeaponSkin($defindex, $paintId, $wear, $seed): void
|
||||
{
|
||||
$selectedSkins = $this->getSelectedSkins();
|
||||
|
||||
if (array_key_exists($defindex, $selectedSkins)) {
|
||||
// Update existing
|
||||
$this->db->query(
|
||||
"UPDATE wp_player_skins SET weapon_paint_id = :weapon_paint_id, weapon_wear = :weapon_wear, weapon_seed = :weapon_seed WHERE steamid = :steamid AND weapon_defindex = :weapon_defindex",
|
||||
[
|
||||
"weapon_paint_id" => $paintId,
|
||||
"weapon_wear" => $wear,
|
||||
"weapon_seed" => $seed,
|
||||
"steamid" => $this->steamid,
|
||||
"weapon_defindex" => $defindex
|
||||
]
|
||||
);
|
||||
} else {
|
||||
// Insert new for both teams
|
||||
$this->db->query(
|
||||
"INSERT INTO wp_player_skins (`steamid`, `weapon_defindex`, `weapon_paint_id`, `weapon_wear`, `weapon_seed`, `weapon_team`) VALUES (:steamid, :weapon_defindex, :weapon_paint_id, :weapon_wear, :weapon_seed, 2)",
|
||||
[
|
||||
"steamid" => $this->steamid,
|
||||
"weapon_defindex" => $defindex,
|
||||
"weapon_paint_id" => $paintId,
|
||||
"weapon_wear" => $wear,
|
||||
"weapon_seed" => $seed
|
||||
]
|
||||
);
|
||||
|
||||
$this->db->query(
|
||||
"INSERT INTO wp_player_skins (`steamid`, `weapon_defindex`, `weapon_paint_id`, `weapon_wear`, `weapon_seed`, `weapon_team`) VALUES (:steamid, :weapon_defindex, :weapon_paint_id, :weapon_wear, :weapon_seed, 3)",
|
||||
[
|
||||
"steamid" => $this->steamid,
|
||||
"weapon_defindex" => $defindex,
|
||||
"weapon_paint_id" => $paintId,
|
||||
"weapon_wear" => $wear,
|
||||
"weapon_seed" => $seed
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
private function clearKnifeData(): void
|
||||
{
|
||||
$knifeDefindexes = UtilsClass::getKnifeDefindexes();
|
||||
|
||||
// Clear knife skins
|
||||
foreach ($knifeDefindexes as $knifeDefindex) {
|
||||
$this->db->query(
|
||||
"DELETE FROM `wp_player_skins` WHERE `steamid` = :steamid AND `weapon_defindex` = :weapon_defindex",
|
||||
["steamid" => $this->steamid, "weapon_defindex" => $knifeDefindex]
|
||||
);
|
||||
}
|
||||
|
||||
// Clear basic knife selection
|
||||
$this->db->query(
|
||||
"DELETE FROM `wp_player_knife` WHERE `steamid` = :steamid",
|
||||
["steamid" => $this->steamid]
|
||||
);
|
||||
}
|
||||
|
||||
private function validateWear($wear)
|
||||
{
|
||||
$wear = floatval($wear);
|
||||
return ($wear >= 0.00 && $wear <= 1.00) ? $wear : false;
|
||||
}
|
||||
|
||||
private function validateSeed($seed)
|
||||
{
|
||||
$seed = intval($seed);
|
||||
return ($seed >= 0) ? $seed : false;
|
||||
}
|
||||
|
||||
public function getSelectedSkins(): array
|
||||
{
|
||||
$query = $this->db->select(
|
||||
"SELECT `weapon_defindex`, MAX(`weapon_paint_id`) AS `weapon_paint_id`, MAX(`weapon_wear`) AS `weapon_wear`, MAX(`weapon_seed`) AS `weapon_seed`
|
||||
FROM `wp_player_skins`
|
||||
WHERE `steamid` = :steamid
|
||||
GROUP BY `weapon_defindex`, `steamid`",
|
||||
["steamid" => $this->steamid]
|
||||
);
|
||||
|
||||
return UtilsClass::getSelectedSkins($query ?: []);
|
||||
}
|
||||
|
||||
public function getSelectedKnife(): array
|
||||
{
|
||||
return $this->db->select(
|
||||
"SELECT * FROM `wp_player_knife` WHERE `steamid` = :steamid LIMIT 1",
|
||||
["steamid" => $this->steamid]
|
||||
) ?: [];
|
||||
}
|
||||
|
||||
public function getLoadoutData(): array
|
||||
{
|
||||
$weapons = UtilsClass::getWeaponsFromArray();
|
||||
$knifes = UtilsClass::getKnifeTypes();
|
||||
$selectedSkins = $this->getSelectedSkins();
|
||||
$selectedKnife = $this->getSelectedKnife();
|
||||
|
||||
return [
|
||||
'weapons' => $weapons,
|
||||
'knifes' => $knifes,
|
||||
'selectedSkins' => $selectedSkins,
|
||||
'selectedKnife' => $selectedKnife,
|
||||
'displayKnife' => $this->getDisplayKnife($selectedSkins, $selectedKnife, $knifes)
|
||||
];
|
||||
}
|
||||
|
||||
private function getDisplayKnife($selectedSkins, $selectedKnife, $knifes): array
|
||||
{
|
||||
$skins = UtilsClass::skinsFromJson();
|
||||
|
||||
// Check for knife skin first
|
||||
foreach ($selectedSkins as $defindex => $selectedSkin) {
|
||||
if (UtilsClass::isKnifeDefindex($defindex) && isset($skins[$defindex][$selectedSkin['weapon_paint_id']])) {
|
||||
return [
|
||||
'data' => $skins[$defindex][$selectedSkin['weapon_paint_id']],
|
||||
'source' => 'skin'
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
// Check for basic knife selection
|
||||
if (!empty($selectedKnife)) {
|
||||
foreach ($knifes as $knife) {
|
||||
if ($selectedKnife[0]['knife'] === $knife['weapon_name']) {
|
||||
return [
|
||||
'data' => $knife,
|
||||
'source' => 'basic'
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Default knife
|
||||
return [
|
||||
'data' => $knifes[0] ?? null,
|
||||
'source' => 'default'
|
||||
];
|
||||
}
|
||||
|
||||
public function getOrganizedWeapons(): array
|
||||
{
|
||||
$weapons = UtilsClass::getWeaponsFromArray();
|
||||
$knifes = UtilsClass::getKnifeTypes();
|
||||
$categories = UtilsClass::getWeaponCategories();
|
||||
|
||||
$organized = [
|
||||
'Knives' => [],
|
||||
'Gloves' => []
|
||||
];
|
||||
|
||||
// Add weapon categories
|
||||
foreach ($categories as $categoryName => $weaponIds) {
|
||||
$organized[$categoryName] = [];
|
||||
foreach ($weaponIds as $weaponId) {
|
||||
if (isset($weapons[$weaponId])) {
|
||||
$organized[$categoryName][$weaponId] = $weapons[$weaponId];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Add knives (exclude default)
|
||||
foreach ($knifes as $knifeId => $knife) {
|
||||
if ($knifeId !== 0) {
|
||||
$organized['Knives'][$knifeId] = $knife;
|
||||
}
|
||||
}
|
||||
|
||||
// Remove empty categories
|
||||
return array_filter($organized, function($category) {
|
||||
return !empty($category);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -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,11 @@
|
||||
"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 монета",
|
||||
@@ -1959,24 +2129,34 @@
|
||||
"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",
|
||||
"name": "Шампион от 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",
|
||||
"name": "Финалист от 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",
|
||||
"name": "Полуфиналист от 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",
|
||||
"name": "Четвъртфиналист от BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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)",
|
||||
|
||||
@@ -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,6 +1759,16 @@
|
||||
"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": "Vinder af 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-seerpas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Mønt: Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"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": "Vinder af Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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)",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Viertelfinalist der 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": "Verdienstmünze der Operation Payback",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Münze der Karte 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": "Verdienstmünze der Operation Bravo",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Münze der Karte 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": "Verdienstmünze der Operation Phoenix",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Goldmünze der Operation Phoenix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "Zugangspass für Operation Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Verdienstmünze der Operation Breakout",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Münze der Karte Chalice",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Zugangspass für Operation Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Verdienstmünze der Operation Vanguard",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Goldmünze der Operation Vanguard",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Zugangspass für Operation Bloodhound",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Verdienstmünze der Operation Bloodhound",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Verdienstmedaille 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Zugangspass für Operation Wildfire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Verdienstmünze der Operation Wildfire",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Verdienstmedaille 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Zugangspass für Operation Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Verdienstmedaille 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamantmünze der Operation Hydra",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Premiumpass für Operation Zerfetztes Netz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Verdienstmünze der Operation Zerfetztes Netz",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamantmünze der Operation Zerfetztes Netz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Zuschauerpass – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Münze – Kattowitz 2019",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamantmünze – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Zuschauerpass – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Münze – Berlin 2019",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamantmünze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Souvenirmarke – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Verdienstmedaille 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "Anstecknadel: City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Premiumpass für Operation Zerbrochener Reißzahn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Verdienstmünze der Operation Zerbrochener Reißzahn",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Verdienstmedaille 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Premiumpass für Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Verdienstmünze der Operation Springflut",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamantmünze der Operation Springflut",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Zuschauerpass – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Münze – Stockholm 2021",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamantmünze – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Souvenirmarken – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Verdienstmedaille 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Verdienstmedaille 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Zuschauerpass – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Münze – Antwerpen 2022",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamantmünze – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Souvenirmarke – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Zuschauerpass – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Münze – Rio 2022",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamantmünze – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Souvenirmarke – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Verdienstmedaille 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Verdienstmedaille 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Zuschauerpass – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Münze – Paris 2023",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamantmünze – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Souvenirmarke – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Verdienstmedaille 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Verdienstmedaille 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Zuschauerpass – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Münze – Kopenhagen 2024",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Diamantmünze – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Souvenirpaket – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Meister der PGL Kopenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Verdienstmedaille 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Zuschauerpass – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Münze – Shanghai 2024",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Diamantmünze – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Shanghai 2024",
|
||||
"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": "Meister der Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,11 @@
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Zuschauerpass – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Münze – Austin 2025",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"name": "Diamantmünze – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Austin 2025",
|
||||
"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": "Meister der BLAST.tv Austin 2025",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Münze der Karte Golden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Münze der Karte Rooftop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Münze der Karte Palacio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "Münze der Karte [Zensiert]",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Zuschauerpass – Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Münze – Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Silbermünze – Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Goldmünze – Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamantmünze – Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Zuschauerpass + 3 Souvenirmarken – Budapest 2025",
|
||||
"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": "Meister der StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist der StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Halbfinalist der StarLadder Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Viertelfinalist der 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": "Verdienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Verdienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Verdienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Verdienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Verdienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Verdienstmedaille 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": "Anstecknadel: Dust II (Echt)",
|
||||
|
||||
@@ -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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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",
|
||||
|
||||
@@ -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 de oro 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 de oro 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 de Berlín 2019 + 3 fichas regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Ficha regalo 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 de 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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Ficha regalo 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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Ficha regalo 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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Ficha regalo 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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Ficha regalo 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 de 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Medalla de Servicio de 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 de Copenhague 2024 + 3 fichas regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Paquete regalo 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 de 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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Paquete regalo 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 de Shanghái 2024",
|
||||
@@ -1939,6 +2104,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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 de Austin 2025 + 3 fichas regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Paquete regalo de 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 de Austin 2025",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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 regalo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Paquete regalo de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Campeón del StarLadder de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalista del StarLadder de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Semifinalista del StarLadder de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Cuartofinalista del StarLadder de Budapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5229.png"
|
||||
},
|
||||
{
|
||||
"id": "5234",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5234.png"
|
||||
},
|
||||
{
|
||||
"id": "5235",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5235.png"
|
||||
},
|
||||
{
|
||||
"id": "5236",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5236.png"
|
||||
},
|
||||
{
|
||||
"id": "5237",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5237.png"
|
||||
},
|
||||
{
|
||||
"id": "5238",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5238.png"
|
||||
},
|
||||
{
|
||||
"id": "5239",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5239.png"
|
||||
},
|
||||
{
|
||||
"id": "5240",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5240.png"
|
||||
},
|
||||
{
|
||||
"id": "5241",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5241.png"
|
||||
},
|
||||
{
|
||||
"id": "5242",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5242.png"
|
||||
},
|
||||
{
|
||||
"id": "5243",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5243.png"
|
||||
},
|
||||
{
|
||||
"id": "5244",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5244.png"
|
||||
},
|
||||
{
|
||||
"id": "5245",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5245.png"
|
||||
},
|
||||
{
|
||||
"id": "5246",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5246.png"
|
||||
},
|
||||
{
|
||||
"id": "5247",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5247.png"
|
||||
},
|
||||
{
|
||||
"id": "5248",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5248.png"
|
||||
},
|
||||
{
|
||||
"id": "5249",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5249.png"
|
||||
},
|
||||
{
|
||||
"id": "5250",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5250.png"
|
||||
},
|
||||
{
|
||||
"id": "5251",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5251.png"
|
||||
},
|
||||
{
|
||||
"id": "5252",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5252.png"
|
||||
},
|
||||
{
|
||||
"id": "5253",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5253.png"
|
||||
},
|
||||
{
|
||||
"id": "5254",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5254.png"
|
||||
},
|
||||
{
|
||||
"id": "5255",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5255.png"
|
||||
},
|
||||
{
|
||||
"id": "5256",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5256.png"
|
||||
},
|
||||
{
|
||||
"id": "5257",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5257.png"
|
||||
},
|
||||
{
|
||||
"id": "5258",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5258.png"
|
||||
},
|
||||
{
|
||||
"id": "5259",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5259.png"
|
||||
},
|
||||
{
|
||||
"id": "5260",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5260.png"
|
||||
},
|
||||
{
|
||||
"id": "5261",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5261.png"
|
||||
},
|
||||
{
|
||||
"id": "5262",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5262.png"
|
||||
},
|
||||
{
|
||||
"id": "5263",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5263.png"
|
||||
},
|
||||
{
|
||||
"id": "5264",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5264.png"
|
||||
},
|
||||
{
|
||||
"id": "5265",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5265.png"
|
||||
},
|
||||
{
|
||||
"id": "5266",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5266.png"
|
||||
},
|
||||
{
|
||||
"id": "5267",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5267.png"
|
||||
},
|
||||
{
|
||||
"id": "5268",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5268.png"
|
||||
},
|
||||
{
|
||||
"id": "5269",
|
||||
"name": "Medalla de la cuarta temporada del modo Premier",
|
||||
"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": "Moneda del mapa Warden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5276.png"
|
||||
},
|
||||
{
|
||||
"id": "5277",
|
||||
"name": "Moneda del mapa Stronghold",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5277.png"
|
||||
},
|
||||
{
|
||||
"id": "5278",
|
||||
"name": "Moneda del mapa Alpine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5278.png"
|
||||
},
|
||||
{
|
||||
"id": "5279",
|
||||
"name": "Moneda del mapa Poseidon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5279.png"
|
||||
},
|
||||
{
|
||||
"id": "5280",
|
||||
"name": "Moneda del mapa Sanctum",
|
||||
"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": "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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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 コイン",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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 優勝",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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 주화",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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 메이저 대회 우승팀",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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 핀",
|
||||
|
||||
@@ -589,6 +589,11 @@
|
||||
"name": "Kwartfinalist van BLAST.tv Parijs 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"name": "Operatie Payback-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1000.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operatie Payback-uitdagingsmunt",
|
||||
@@ -639,6 +644,11 @@
|
||||
"name": "Library-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1010.png"
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"name": "Operatie Bravo-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1012.png"
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operatie Bravo-uitdagingsmunt",
|
||||
@@ -689,6 +699,11 @@
|
||||
"name": "Siege-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1022.png"
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"name": "Operatie Phoenix-pas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1023.png"
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operatie Phoenix-uitdagingsmunt",
|
||||
@@ -704,6 +719,11 @@
|
||||
"name": "Gouden Operatie Phoenix-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"name": "All Access-pas Operatie Breakout",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1027.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operatie Breakout-uitdagingsmunt",
|
||||
@@ -1014,6 +1034,11 @@
|
||||
"name": "Chalice-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1089.png"
|
||||
},
|
||||
{
|
||||
"id": "1315",
|
||||
"name": "Operatie Vanguard-toegangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1315.png"
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operatie Vanguard-uitdagingsmunt",
|
||||
@@ -1029,6 +1054,11 @@
|
||||
"name": "Gouden Operatie Vanguard-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1326",
|
||||
"name": "Operatie Bloodhound-toegangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1326.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operatie Bloodhound-uitdagingsmunt",
|
||||
@@ -1054,6 +1084,11 @@
|
||||
"name": "Dienstmedaille 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1332.png"
|
||||
},
|
||||
{
|
||||
"id": "1335",
|
||||
"name": "Operatie Wildfire-toegangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1335.png"
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operatie Wildfire-uitdagingsmunt",
|
||||
@@ -1099,6 +1134,11 @@
|
||||
"name": "Dienstmedaille 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1344.png"
|
||||
},
|
||||
{
|
||||
"id": "1352",
|
||||
"name": "Operatie Hydra-toegangspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1352.png"
|
||||
},
|
||||
{
|
||||
"id": "1357",
|
||||
"name": "Dienstmedaille 2017",
|
||||
@@ -1214,6 +1254,11 @@
|
||||
"name": "Diamanten Operatie Hydra-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4549",
|
||||
"name": "Premiumpas voor Operatie Shattered Web",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4549.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operatie Shattered Web-uitdagingsmunt",
|
||||
@@ -1234,6 +1279,11 @@
|
||||
"name": "Diamanten Operatie Shattered Web-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
"id": "4554",
|
||||
"name": "Toeschouwerspas Katowice 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4554.png"
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Katowice 2019-munt",
|
||||
@@ -1254,6 +1304,11 @@
|
||||
"name": "Diamanten Katowice 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4622",
|
||||
"name": "Toeschouwerspas Berlijn 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4622.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlijn 2019-munt",
|
||||
@@ -1274,6 +1329,16 @@
|
||||
"name": "Diamanten Berlijn 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
"id": "4627",
|
||||
"name": "Toeschouwerspas Berlijn 2019 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4627.png"
|
||||
},
|
||||
{
|
||||
"id": "4628",
|
||||
"name": "Berlijn 2019-souvenirpenning",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4628.png"
|
||||
},
|
||||
{
|
||||
"id": "4674",
|
||||
"name": "Dienstmedaille 2020",
|
||||
@@ -1359,6 +1424,11 @@
|
||||
"name": "City 17-speld",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "Premiumpas voor Operatie Broken Fang",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4699.png"
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operatie Broken Fang-uitdagingsmunt",
|
||||
@@ -1409,6 +1479,11 @@
|
||||
"name": "Dienstmedaille 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4742.png"
|
||||
},
|
||||
{
|
||||
"id": "4758",
|
||||
"name": "Premiumpas voor Operatie Riptide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4758.png"
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operatie Riptide-uitdagingsmunt",
|
||||
@@ -1429,6 +1504,11 @@
|
||||
"name": "Diamanten Operatie Riptide-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
"id": "4796",
|
||||
"name": "Toeschouwerspas Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4796.png"
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Stockholm 2021-munt",
|
||||
@@ -1449,6 +1529,16 @@
|
||||
"name": "Diamanten Stockholm 2021-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
"id": "4801",
|
||||
"name": "Toeschouwerspas Stockholm 2021 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4801.png"
|
||||
},
|
||||
{
|
||||
"id": "4802",
|
||||
"name": "Souvenirpenning Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4802.png"
|
||||
},
|
||||
{
|
||||
"id": "4819",
|
||||
"name": "Dienstmedaille 2022",
|
||||
@@ -1479,6 +1569,11 @@
|
||||
"name": "Dienstmedaille 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4824.png"
|
||||
},
|
||||
{
|
||||
"id": "4825",
|
||||
"name": "Antwerpen 2022: toeschouwerspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4825.png"
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerpen 2022-munt",
|
||||
@@ -1499,6 +1594,21 @@
|
||||
"name": "Diamanten Antwerpen 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4830",
|
||||
"name": "Toeschouwerspas Antwerpen 2022 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4830.png"
|
||||
},
|
||||
{
|
||||
"id": "4831",
|
||||
"name": "Antwerpen 2022: souvenirpenning",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4831.png"
|
||||
},
|
||||
{
|
||||
"id": "4850",
|
||||
"name": "Rio 2022: toeschouwerspas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4850.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Rio 2022-munt",
|
||||
@@ -1519,6 +1629,16 @@
|
||||
"name": "Diamanten Rio 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
"id": "4855",
|
||||
"name": "Toeschouwerspas Rio 2022 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4855.png"
|
||||
},
|
||||
{
|
||||
"id": "4856",
|
||||
"name": "Rio 2022-souvenirpenning",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4856.png"
|
||||
},
|
||||
{
|
||||
"id": "4873",
|
||||
"name": "Dienstmedaille 2023",
|
||||
@@ -1549,6 +1669,11 @@
|
||||
"name": "Dienstmedaille 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4878.png"
|
||||
},
|
||||
{
|
||||
"id": "4883",
|
||||
"name": "Toeschouwerspas Parijs 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4883.png"
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Parijs 2023-munt",
|
||||
@@ -1569,6 +1694,16 @@
|
||||
"name": "Diamanten Parijs 2023-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
"id": "4888",
|
||||
"name": "Toeschouwerspas Parijs 2023 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4888.png"
|
||||
},
|
||||
{
|
||||
"id": "4889",
|
||||
"name": "Parijs 2023-souvenirpenning",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4889.png"
|
||||
},
|
||||
{
|
||||
"id": "4906",
|
||||
"name": "Dienstmedaille 2024",
|
||||
@@ -1599,6 +1734,11 @@
|
||||
"name": "Dienstmedaille 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4911.png"
|
||||
},
|
||||
{
|
||||
"id": "4916",
|
||||
"name": "Toeschouwerspas Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4916.png"
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Kopenhagen 2024-munt",
|
||||
@@ -1619,6 +1759,16 @@
|
||||
"name": "Diamanten Kopenhagen 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4921",
|
||||
"name": "Toeschouwerspas Kopenhagen 2024 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4921.png"
|
||||
},
|
||||
{
|
||||
"id": "4922",
|
||||
"name": "Kopenhagen 2024-souvenirpakket",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4922.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Kampioen van PGL Kopenhagen 2024",
|
||||
@@ -1694,6 +1844,11 @@
|
||||
"name": "Dienstmedaille 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4956.png"
|
||||
},
|
||||
{
|
||||
"id": "4957",
|
||||
"name": "Toeschouwerspas Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4957.png"
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Shanghai 2024-munt",
|
||||
@@ -1714,6 +1869,16 @@
|
||||
"name": "Diamanten Shanghai 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
"id": "4962",
|
||||
"name": "Toeschouwerspas Shanghai 2024 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4962.png"
|
||||
},
|
||||
{
|
||||
"id": "4963",
|
||||
"name": "Shanghai 2024-souvenirpakket",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4963.png"
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Kampioen van Perfect World Shanghai 2024",
|
||||
@@ -1939,6 +2104,11 @@
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5110",
|
||||
"name": "Toeschouwerspas Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5110.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025-munt",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"name": "Diamanten Austin 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5115",
|
||||
"name": "Toeschouwerspas Austin 2025 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5115.png"
|
||||
},
|
||||
{
|
||||
"id": "5116",
|
||||
"name": "Austin 2025-souvenirpakket",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5116.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Kampioen van BLAST.tv Austin 2025",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "5177",
|
||||
"name": "Golden-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5177.png"
|
||||
},
|
||||
{
|
||||
"id": "5178",
|
||||
"name": "Rooftop-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5178.png"
|
||||
},
|
||||
{
|
||||
"id": "5179",
|
||||
"name": "Palacio-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5179.png"
|
||||
},
|
||||
{
|
||||
"id": "5180",
|
||||
"name": "(Gecensureerd)-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5180.png"
|
||||
},
|
||||
{
|
||||
"id": "5209",
|
||||
"name": "Toeschouwerspas Boedapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5209.png"
|
||||
},
|
||||
{
|
||||
"id": "5210",
|
||||
"name": "Boedapest 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5210.png"
|
||||
},
|
||||
{
|
||||
"id": "5211",
|
||||
"name": "Zilveren Boedapest 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5211.png"
|
||||
},
|
||||
{
|
||||
"id": "5212",
|
||||
"name": "Gouden Boedapest 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5212.png"
|
||||
},
|
||||
{
|
||||
"id": "5213",
|
||||
"name": "Diamanten Boedapest 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5213.png"
|
||||
},
|
||||
{
|
||||
"id": "5214",
|
||||
"name": "Toeschouwerspas Boedapest 2025 + 3 souvenirpenningen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5214.png"
|
||||
},
|
||||
{
|
||||
"id": "5215",
|
||||
"name": "Boedapest 2025-souvenirpakket",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5215.png"
|
||||
},
|
||||
{
|
||||
"id": "5226",
|
||||
"name": "Kampioen van StarLadder Boedapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5226.png"
|
||||
},
|
||||
{
|
||||
"id": "5227",
|
||||
"name": "Finalist van StarLadder Boedapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5227.png"
|
||||
},
|
||||
{
|
||||
"id": "5228",
|
||||
"name": "Halvefinalist van StarLadder Boedapest 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5228.png"
|
||||
},
|
||||
{
|
||||
"id": "5229",
|
||||
"name": "Kwartfinalist van StarLadder Boedapest 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": "Dienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5270.png"
|
||||
},
|
||||
{
|
||||
"id": "5271",
|
||||
"name": "Dienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5271.png"
|
||||
},
|
||||
{
|
||||
"id": "5272",
|
||||
"name": "Dienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5272.png"
|
||||
},
|
||||
{
|
||||
"id": "5273",
|
||||
"name": "Dienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5273.png"
|
||||
},
|
||||
{
|
||||
"id": "5274",
|
||||
"name": "Dienstmedaille 2026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5274.png"
|
||||
},
|
||||
{
|
||||
"id": "5275",
|
||||
"name": "Dienstmedaille 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": "Authentiek Dust II-speld",
|
||||
|
||||
@@ -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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,6 +2104,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,9 +2364,319 @@
|
||||
"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"
|
||||
},
|
||||
{
|
||||
@@ -2356,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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,9 +2104,14 @@
|
||||
"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": "Moneda Austin 2025",
|
||||
"name": "Austin 2025 - Monedă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,12 +551,12 @@
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
@@ -566,29 +566,34 @@
|
||||
},
|
||||
{
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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",
|
||||
|
||||
@@ -156,12 +156,12 @@
|
||||
},
|
||||
{
|
||||
"id": "906",
|
||||
"name": "ทีมที่เข้ารอบรองชนะเลิศ ESL One Cologne 2015",
|
||||
"name": "ผู้เข้ารอบรองชนะเลิศที่ ESL One Cologne 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-906.png"
|
||||
},
|
||||
{
|
||||
"id": "907",
|
||||
"name": "ทีมที่เข้ารอบก่อนรองชนะเลิศ ESL One Cologne 2015",
|
||||
"name": "ผู้เข้ารอบก่อนรองชนะเลิศ ESL One Cologne 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-907.png"
|
||||
},
|
||||
{
|
||||
@@ -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": "บัตรผ่านเข้าร่วมปฏิบัติการ 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": "เหรียญการท้าทายปฏิบัติการ 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": "บัตรผ่านผู้เข้าชม 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": "เข็มกลัด City 17",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4692.png"
|
||||
},
|
||||
{
|
||||
"id": "4699",
|
||||
"name": "บัตรผ่านพรีเมียมปฏิบัติการ 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",
|
||||
"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": "บัตรผ่านผู้เข้าชม 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": "บัตรผ่านผู้เข้าชม + 3 โทเค็นของที่ระลึก Paris 2023",
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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 (Genuine)",
|
||||
|
||||
@@ -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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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»",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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»",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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 硬币",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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 奥斯汀锦标赛冠军",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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,11 @@
|
||||
"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 硬幣",
|
||||
@@ -1959,6 +2129,16 @@
|
||||
"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",
|
||||
@@ -2184,6 +2364,316 @@
|
||||
"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 徽章",
|
||||
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | chopper | Двойно убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Джунджурия | Мъничко проклятие",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 100 щети от околната среда",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Джунджурия | Мъничко змийче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 1 с/у 2 отхвърлено",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Джунджурия | Мъничко баскетболистче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | chopper | Тройно постъпление",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Джунджурия | Мъртва тежест",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Двойно убийство с пистолет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Джунджурия | Мъничко бодилче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Тройно убийство и обезвреждане",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Джунджурия | Мънички хлебчета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Jimpphat | Четворно убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Джунджурия | Мъничък пушач",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Стреляне в движение",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Джунджурия | Мъничка странност",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Критична схватка 1 с/у 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Джунджурия | Мъничък щастливец",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Крал на критичните схватки",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Джунджурия | Магматичност",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Пъргави реакции",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Джунджурия | Мъничко кикотене",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Две гранати в главата",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Джунджурия | Живак",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Spinx | Четворно убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Джунджурия | Мъничко № 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Brollan | Двойно убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Джунджурия | Пинятичка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Brollan | Тройно убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Джунджурия | Джобна ледена близалка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Железният човек",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Джунджурия | Мъничък герой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Летящ и стрелящ на посоки",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Джунджурия | Мъничък бивник",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Почти асът",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Джунджурия | Мъничко лепкоч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | След теб съм",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Джунджурия | Дръжте се спокойно",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Отхвърлено AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Джунджурия | Мъничко винено",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 3, 2, 1 — ДАВАЙ!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Джунджурия | Мънички мигове",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | dgt | Почти критична схватка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Джунджурия | Мъничко духче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Майстор на Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Джунджурия | Мъничко чуруликащо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | dav1deuS | Двойно убийство на Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Джунджурия | Голям акъл",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Повишаване на нивото за критична схватка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Джунджурия | Биомеханика",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Джунджурия | Оплискана котка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 2 Pistol Headshots",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Джунджурия | Непреклонен",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 910 | Тройно убийство с/у FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Джунджурия | Пухчо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Джунджурия | Издялканото типче",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Джунджурия | Мъничко дзен",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Джунджурия | Мъничко лицево повдигане",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | chopperovo dvojnásobné zabití",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.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": "2025100",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | 100 bodů granáty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.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": "202511",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Nepodařený pokus 1 vs. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.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": "20253",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | chopperův trojnásobný úvod",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.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": "20252",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Dvojnásobné zabití pistolí",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.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": "2025311",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Trojnásobné zabití a zneškodnění bomby",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "202541",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Jimpphatovo čtyřnásobné zabití",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.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": "2025",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Smrtící sprint",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.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": "202512",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Clutch 1 vs. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.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": "2025413",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Král clutche",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Přívěsek | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Skvělý postřeh",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.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": "202531",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Dva granáty do hlavy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "20254",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Spinxovo čtyřnásobné zabití",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.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": "202522",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Brollanovo dvojnásobné zabití",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202532",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Brollanovo trojnásobné zabití",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Ocelový muž",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.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": "2025392",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Letící zabiják",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.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": "20254112",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Skoro eso",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.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": "202542",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Kalach ×4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.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": "2025122",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Kupte si nové",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.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": "202529",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Nebeská MP9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.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": "202513",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Skoro clutch (dgt)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.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": "20259",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Mistr přes Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.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": "2025112",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | dav1deuSovo dvojnásobné zabití (Anubis)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.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": "2025113",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Zavíračka 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Přívěsek | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Desert Eagle navždy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.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": "20259102",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Dva headshoty pistolí",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Přívěsek | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | 910 a jeho trojnásobné zabití (vs. FaZe Clan)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Přívěsek | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Běžec s MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.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": "20259101",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Exemplární příklad",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.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": "2025132",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Děsivý soupeř",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.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": "2025123",
|
||||
"name": "Souvenir Charm | Highlight | BLAST.tv Austin 2025 | Nepodařený experiment",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | chopper – dobbelt drab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Vedhæng | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 100 skade fra kasteskyts",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Vedhæng | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 1v2 nægtet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Vedhæng | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | chopper – tredobbelt drab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Vedhæng | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Dobbelt pistoldrab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Vedhæng | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Triple Kill And A Defuse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Vedhæng | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Jimpphat – firdobbelt drab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Vedhæng | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | The Run And Gun",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Vedhæng | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 1v2 Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Vedhæng | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Clutch-kongen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Vedhæng | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Quick Reactions",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Vedhæng | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Two Nades To The Head",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Vedhæng | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Spinx – firdobbelt drab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.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": "202522",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Brollan Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Vedhæng | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Brollan – tredobbelt drab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Vedhæng | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | The Iron Man",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Vedhæng | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | The Flying Spray",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Vedhæng | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Almost The Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Vedhæng | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | I'm Right Behind You",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Vedhæng | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | AWP Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Vedhæng | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 3-2-1-GO!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Vedhæng | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | dgt Almost Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Vedhæng | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Tec-9 Master",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Vedhæng | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | dav1deuS Double Anubis Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Vedhæng | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Clutching Up",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Vedhæng | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Vedhæng | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 2 Pistol Headshots",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Vedhæng | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 910 Triple Kill vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Vedhæng | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Vedhæng | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Vedhæng | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Vedhæng | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | chopper – Doppel-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Anhänger | Kleiner Verfluchter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | 100 Granatenschaden",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Anhänger | Kleine Feuerschlange",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | 1-vs.-2-Clutch vereitelt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.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": "20253",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | chopper – Eins, zwei, drei",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Anhänger | Leichensack",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Doppelter Pistolen-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Anhänger | Kleiner Kaktus",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Dreifach-Kill und eine Entschärfung",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "202541",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Jimpphat – Vierfach-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Anhänger | Kleiner Raucher",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Rennen und schießen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Anhänger | Kleines Grauen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | 1-vs.-2-Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.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": "2025413",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Clutch-König",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Anhänger | Magmawesen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Schnell wie der Blitz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Anhänger | Kleiner Krakeeler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Hart im Nehmen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Anhänger | Quecksilber",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Spinx – Vierfach-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Anhänger | Kleiner Kritzler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Brollan – Doppel-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202532",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Brollan – Dreifach-Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Anhänger | Raketeneis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Iron Man",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Anhänger | Kleiner Held",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Fliegender MP9-Schütze",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.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": "20254112",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Kein Ass im Ärmel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Anhänger | Kleines Schleimmonster",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Schau dich nicht um, Jimpphat geht um",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Anhänger | Locker bleiben",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Weg mit der AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Anhänger | Kleiner Sommelier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | 3-2-1-LOS!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Anhänger | Kleiner Fotograf",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Knappes Ding",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Anhänger | Kleiner Geist",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Meister der Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Anhänger | Kleiner Piepmatz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | dav1deuS – Doppel-Kill auf Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Anhänger | Kluger Kopf",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | So wird’s gemacht",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Anhänger | Biomechaniker",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Überlegenheit der Desert Eagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Anhänger | Kratze-Katze",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Zwei Pistolen-Kopfschüsse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Anhänger | Draufgänger",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | 910 – Dreifach-Kill gegen FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Anhänger | Knuddelmonster",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Unterwegs mit der MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Anhänger | Schnitzer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Ein Kill reicht",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.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": "2025132",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Zum Fürchten",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Anhänger | Gesichtsstraffung",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Highlight – Austin 2025 | Probieren geht über Studieren",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός από τον chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Γούρι | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | 100 ζημιά χειροβομβίδων",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Γούρι | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Άκυρο το 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Γούρι | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός πρώτος σκοτωμός από τον chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Γούρι | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός με πιστόλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Γούρι | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός σκοτωμός και αφοπλισμός",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Γούρι | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τετραπλός σκοτωμός από Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Γούρι | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τρέχα και ρίξε",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Γούρι | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Κλατσάρισμα 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Γούρι | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Clutch King",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Γούρι | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Γρήγορες αντιδράσεις",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Γούρι | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Δύο χειροβομβίδες στο δόξα πα-τρί",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Γούρι | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τετραπλός σκοτωμός από τον Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Γούρι | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός από τον Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Γούρι | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός σκοτωμός από τον Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Γούρι | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Ο Άνθρωπος Ατσάλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Γούρι | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Το ιπτάμενο σπρέι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Γούρι | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Έμεινε στον Άσο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Γούρι | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Είμαι ακριβώς πίσω σου",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Γούρι | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Έχε γεια, AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Γούρι | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | 3-2-1, ΠΑΜΕ!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Γούρι | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Σχεδόν κλατσάρισμα από τον dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Γούρι | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Ειδικός Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Γούρι | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός από τον dav1deuS στην Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Γούρι | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Κλατσαριστά",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Γούρι | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Υπεροχή του Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Γούρι | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Δύο κεφαλίδια με πιστόλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Γούρι | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός σκοτωμός από τον 910 εναντίον των FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Γούρι | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Έτρεχε το MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Γούρι | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Ένας σκοτωμός είναι αρκετός",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Γούρι | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Να τον φοβάσαι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Γούρι | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τεστ, τεστ, ένα, δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | chopper Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Charm | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 100 Utility Damage",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Charm | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 1v2 Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Charm | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | chopper Triple Entry",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Charm | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Double Pistol Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Charm | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Triple Kill And A Defuse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Charm | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Jimpphat Quadra Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Charm | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | The Run And Gun",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Charm | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 1v2 Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Charm | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Clutch King",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Charm | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Quick Reactions",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Charm | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Two Nades To The Head",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Charm | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Spinx Quadra Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Charm | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Brollan Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Charm | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Brollan Triple Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Charm | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | The Iron Man",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Charm | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | The Flying Spray",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Charm | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Almost The Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Charm | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | I'm Right Behind You",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Charm | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | AWP Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Charm | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 3-2-1-GO!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Charm | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | dgt Almost Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Charm | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Tec-9 Master",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Charm | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | dav1deuS Double Anubis Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Charm | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Clutching Up",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Charm | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Charm | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 2 Pistol Headshots",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Charm | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | 910 Triple Kill vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Charm | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Charm | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Charm | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Charm | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Doble asesinato de chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Colgante | Conjurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | 100 de daño por granadas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Colgante | Serpientita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | 1 contra 2 denegado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Colgante | Pelotito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Triple entrada de chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Colgante | Peso muerto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Doble asesinato con pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Colgante | Pinchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Triple asesinato y desactivación",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Colgante | Panecitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Asesinato cuádruple de Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Colgante | Ahumadito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Correr y disparar",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Colgante | Arcancito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Clutch de 1 contra 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Colgante | Contentito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Rey del clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Colgante | Magmatudito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Buenos reflejos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Colgante | Carcajadita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Dos granadas en la cabeza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Colgante | Mercurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Asesinato cuádruple de Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Colgante | Lapicito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Doble asesinato de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Colgante | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Triple asesinato de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Colgante | Pirulito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | El hombre de hierro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Colgante | Heroíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Control aéreo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Colgante | Colmillito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Casi un ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Colgante | Viscosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Estoy justo detrás de ti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Colgante | Surfito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | AWP denegado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Colgante | Vinito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | 3, 2, 1... ¡VAMOS!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Colgante | Momentitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Casi un clutch de dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Colgante | Sustito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Maestro de la Tec‑9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Colgante | Piíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Doble asesinato de dav1deuS en Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Colgante | Cerebrote",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Clutcheando",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Colgante | Biomecánico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Supremacía de Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Colgante | Gato salpicón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Dos disparos a la cabeza con pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Colgante | Bravucón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Triple asesinato de 910 contra FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Colgante | Rugosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | La MAC‑10 veloz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Colgante | Talladito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Una víctima es suficiente",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Colgante | Zenito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Temedle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Colgante | Liftingcito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Momento destacado de Austin 2025 | Probando: 1, 2, 3...",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Doble asesinato de chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Colgante | Maldicionita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | 100 de daño por granadas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Colgante | Serpientita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | 1 contra 2 denegado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Colgante | Pelotito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Triple entrada de chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Colgante | Peso muerto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Doble asesinato por pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Colgante | Pinchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Triple asesinato y desactivación",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Colgante | Panecitos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Asesinato cuádruple de Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Colgante | Humito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Corriendo y disparando",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Colgante | Arcancito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Clutch de 1 contra 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Colgante | Contentico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Rey del clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Colgante | Magmatudito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Reflejos rápidos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Colgante | Carcajadita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Dos granadas a la cabeza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Colgante | Mercurito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Cuatro víctimas de Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Colgante | Lapicito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Doble asesinato de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Colgante | Piñatica",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Triple asesinato de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Colgante | Paletito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | El hombre de hierro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Colgante | Heroíto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Aerosol volador",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Colgante | Colmillito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Casi un ¡As!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Colgante | Viscosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Estoy justo detrás de ti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Colgante | Relajadito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | AWP denegado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Colgante | Corchito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | 3, 2, 1... ¡VAMOS!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Colgante | Momenticos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Casi un clutch de dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Colgante | Sustico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Maestro de la Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Colgante | Pollito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Doble asesinato de dav1deuS en Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Colgante | Cerebrote",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Clutcheando",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Colgante | Biomecánico",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Supremacía de Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Colgante | Gato salpicador",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | 2 disparos a la cabeza con pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Colgante | Bravucón",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Asesinato triple de 910 contra FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Colgante | Rugosito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | La MAC‑10 veloz ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Colgante | Talladito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Una víctima es suficiente",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Colgante | Zenito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Témele",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Colgante | Estiradito",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Destacados | Austin 2025 | Probando 1, 2, 3...",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tuplatappo chopperille",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Riipus | Pikku-Kirous",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | 100 apuvälineillä tehtyä vahinkoa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Riipus | Pikku-Kärmes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Evätty 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Riipus | Pikku-Pomppu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Kolme avaustappoa chopperille",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Riipus | Riippakivi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tuplatappo pistoolilla",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Riipus | Pikku-Piikkis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Kolmoistappo ja pomminpurku",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Riipus | Pikku-Purilainen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Jimpphatin nelostappo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Riipus | Pikku-Savunen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Juoksutappo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Riipus | Pikku-Kammonen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tiukka 1v2-tilanne",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Riipus | Pikku-Ilopilleri",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tiukkojen tilanteiden mestari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Riipus | Magmamiekkonen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Nopeat reaktiot",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Riipus | Pikku-Kielimö",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Kaksi kranaattia päähän",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Riipus | Elohopeasankari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Neloistappo Spinxille",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Riipus | Pikku-Kakkonen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tuplatappo Brollanille",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Riipus | Pikku-Piñata",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Kolmoistappo Brollanille",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Riipus | Jädejässikkä",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Sitkeä sissi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Riipus | Pikku-Heeros",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Hyppytappo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Riipus | Pikku-Torahammas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Melkein täyskaato",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Riipus | Pikku-Mönjis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Olen takanasi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Riipus | Lomakeisari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | AWP:täni ette saa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Riipus | Pikku-Viinanen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | 3, 2, 1, nyt!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Riipus | Pikku-Kameramies",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Melkein selvisit voittajana, dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Riipus | Pikku-Pöö",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tec-9-mestari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Riipus | Pikku-Taskusankari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Tuplatappo dav1deuSille Anubiksella",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Riipus | Isoaivo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Niin sitä pitää",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Riipus | Biohirmu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Desert Eagle -kuningas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Riipus | Läiskiäinen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Kaksi pääosumaa pistoolilla",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Riipus | Roso",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | 910 saa triplatapon FaZea vastaan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Riipus | Nahkis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | MAC-10-rynnäkkö",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Riipus | Patsuli",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Yksi tappo riittää",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Riipus | Pikku-Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Riipus | Pikku-Naamis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Riipus | Pikku-Purukalunen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Riipus | Pikku-Verinen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Riipus | Pikku-Nyytti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Riipus | Pommipeto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Riipus | Hilepommi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Riipus | Pikku-Kierrätysmies",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Riipus | Nälkimö",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Riipus | Silmiäinen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Riipus | Pikku-Lumimies",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Riipus | Kasipallonen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Riipus | Valopommi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Riipus | Pikku-Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Riipus | Butaanihemmo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Riipus | Tohtori Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Double élimination de chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Porte-bonheur | Mini vaudou",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | 100 dégâts de grenades",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Porte-bonheur | Mini serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | 1v2 mis à mal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Porte-bonheur | Mini ballon",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | chopper : triplé d'ouverture",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Porte-bonheur | Poids mort",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Double élimination au pistolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Porte-bonheur | Mini cactus",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Triplé et désamorçage",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Porte-bonheur | Mini hamburger",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Quadruples victimes de Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Porte-bonheur | Mini combustion",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Sprint mortel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Porte-bonheur | Mini monstruosité",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Clutch 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Porte-bonheur | Mini risette",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Roi du clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Porte-bonheur | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Réflexes rapides",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Porte-bonheur | Mini jacasse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Deux grenades à la tête",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Porte-bonheur | Mercuriel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Quadruples victimes de Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Porte-bonheur | Mini mine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Double élimination de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Porte-bonheur | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Triplé de Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Porte-bonheur | Sucette glacée",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | L'homme de fer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Porte-bonheur | Mini héros",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Rafale aérienne",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Porte-bonheur | Mini mastodonte",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | À une victime près",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Porte-bonheur | Mini gluant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Je te couvre",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Porte-bonheur | Planche shaka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Pas d'AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Porte-bonheur | Mini Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | 3-2-1-GO !",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Porte-bonheur | Mini moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Quasi-clutch de dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Porte-bonheur | Mini bouh",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Maitre du Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Porte-bonheur | Mini poulet virtuel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Double élimination de dav1deuS sur Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Porte-bonheur | Sacré cerveau",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Défense à tout prix",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Porte-bonheur | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Spécialiste du Desert Eagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Porte-bonheur | Chat rebelle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Deux tirs en pleine tête au pistolet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Porte-bonheur | À cran",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Triplé de 910 face à FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Porte-bonheur | Tout doux",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Course au MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Porte-bonheur | Chaton totem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Un, c'est bien",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Porte-bonheur | Mini Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Tremblez !",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Porte-bonheur | Mini lifting",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Moments forts d'Austin 2025 | Test, un-deux-trois",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Porte-bonheur | Belles quenottes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Porte-bonheur | Mini Joker",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Porte-bonheur | Mini bao",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Porte-bonheur | Bombe taguée",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Porte-bonheur | Bombe laquée",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Porte-bonheur | Mini Recyclage",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Porte-bonheur | Yeux avides",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Porte-bonheur | Orbite oculaire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Porte-bonheur | Mini yéti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Porte-bonheur | Boule 8 meneuse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Porte-bonheur | Grenade assourdissante",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Porte-bonheur | Mini Fournaise",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Porte-bonheur | Butane buteur",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Porte-bonheur | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | chopper dupla ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Talizmán | Kicsi Átok",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 100 kelléksebzés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Talizmán | Kicsi Kígyó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 1v2 megtagadva",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Talizmán | Kicsi Kosaras",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | chopper tripla belépő",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Talizmán | Holtsúly",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Dupla pisztolyos ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Talizmán | Kicsi Tüskés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Tripla ölés és hatástalanítás",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Talizmán | Kicsi Hambi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Jimpphat négyes ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Talizmán | Kicsi Füstös",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Cserbenhagyásos lövöldözés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Talizmán | Kicsi Lidérces",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 1v2 szóló",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Talizmán | Kicsi Vidám",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Szóló Király",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Talizmán | Magmatúdó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Gyors reakciók",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Talizmán | Kicsi Vihogó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Két gránát a képébe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Talizmán | Higanyos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Spinx négyes ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Talizmán | Kicsi 2-es",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Brollan dupla ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Talizmán | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Brollan tripla ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Talizmán | Zsebfagyi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | A vasember",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Talizmán | Kicsi Hős",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | A repülő golyószóró",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Talizmán | Kicsi Agyaras",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Majdnem ász",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Talizmán | Kicsi Ragacs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Itt vagyok mögöttetek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Talizmán | Csak Lazán",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | AWP megtagadva",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Talizmán | Kicsi Boros",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 3-2-1-RAJTA!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Talizmán | Kicsi Pillanatkép",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | dgt majdnem-szóló",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Talizmán | Kicsi Szellem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Tec-9 mester",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Talizmán | Kicsi Csipogó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | dav1deuS dupla Anubis ölés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Talizmán | Nagy Agy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Leszólózás",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Talizmán | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Deagle felsőbbrendűség",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Talizmán | Paca Macska",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 2 pisztolyos fejlövés",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Talizmán | Szívós",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | 910 tripla ölés FaZe ellen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Talizmán | Szőrmók",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | A futó MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Talizmán | Faragott Fickó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Egy ölés elég",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Talizmán | Kicsi Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Félj tőle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Talizmán | Kicsi Ráncfelvarrás",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 Kiemelt pillanat | Próba, egy-kettő-három",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Talizmán | Kicsi Vicsori",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Talizmán | Kicsi Véres",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Talizmán | Kicsi Gombóc",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Talizmán | Bombafirka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Talizmán | Csillámbomba",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Talizmán | Kicsi Öko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Talizmán | Éhes Szemek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Talizmán | Golyószem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Talizmán | Kicsi Jeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Talizmán | 8-as Golyó IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Talizmán | Menő Bomba",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Talizmán | Kicsi Tűzvész",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Talizmán | Bután Pajtás",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Talizmán | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Doppia uccisione di chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Ciondolo | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | 100 danni da granate",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Ciondolo | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | 1 contro 2 negato",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Ciondolo | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Tripla uccisione di chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Ciondolo | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Doppia uccisione con la pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Ciondolo | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Tripla uccisione e un disinnesco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Ciondolo | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Uccisione quadrupla di Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Ciondolo | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Corri e spara",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Ciondolo | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Scontro 1 contro 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Ciondolo | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Ultima speranza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Ciondolo | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Reattività immediata",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Ciondolo | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Due granate in testa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Ciondolo | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Uccisione quadrupla di Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Ciondolo | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Doppia uccisione di Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Ciondolo | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Tripla uccisione di Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Ciondolo | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Duro a morire",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Ciondolo | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Raffica in volo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Ciondolo | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Quasi un'eliminazione totale",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Ciondolo | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Sono proprio alle tue spalle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Ciondolo | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Non avrete l'AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Ciondolo | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | 3, 2, 1, via!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Ciondolo | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | dgt al limite",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Ciondolo | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Maestro di Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Ciondolo | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Doppia uccisione di dav1deus in Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Ciondolo | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | A tutto clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Ciondolo | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Supremazia della Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Ciondolo | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Due colpi alla testa con pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Ciondolo | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Tripla uccisione di 910 vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Ciondolo | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Il turbo MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Ciondolo | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Un'uccisione è sufficiente",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Ciondolo | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Temibile",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Ciondolo | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Momenti salienti - Austin 2025 | Test 1, 2, 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Ciondolo | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Ciondolo | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Ciondolo | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Ciondolo | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Ciondolo | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Ciondolo | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Ciondolo | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Ciondolo | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Ciondolo | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Ciondolo | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Ciondolo | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Ciondolo | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Ciondolo | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Ciondolo | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | chopper、ダブルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "チャーム | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 100 ユーティリティダメージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "チャーム | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 1v2 クラッチならず",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "チャーム | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | chopper、トリプルエントリー",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "チャーム | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | ダブルピストルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "チャーム | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | トリプルキル&解除",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "チャーム | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Jimpphat 、4キル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "チャーム | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | ラン・アンド・ガン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "チャーム | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 1v2 クラッチ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "チャーム | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | クラッチキング",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "チャーム | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 神反応",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "チャーム | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 頭上に2発のグレネード",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "チャーム | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Spinx、4キル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "チャーム | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Brollan、ダブルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "チャーム | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Brollan、トリプルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "チャーム | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 鋼の男",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "チャーム | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 空中スプレー",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "チャーム | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 惜しくもエースならず",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "チャーム | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | すぐ後ろにいるよ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "チャーム | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | AWPは渡さない",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "チャーム | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 3、2、1…ゴー!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "チャーム | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | dgt、クラッチまでもう一歩",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "チャーム | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Tec-9 の名手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "チャーム | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | dav1deuS、Anubis でダブルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "チャーム | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | クラッチで魅せる",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "チャーム | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Deagle、最高",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "チャーム | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | ピストルでヘッドショット2発",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "チャーム | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 910 トリプルキル、対 FaZe 戦",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "チャーム | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 突撃の MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "チャーム | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 1キルで十分です",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "チャーム | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 恐るべき男",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "チャーム | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | テスト中、1・2・3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | chopper 2연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "참 장식 | 리틀 커스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 유틸리티 피해 100",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "참 장식 | 리틀 서펜트",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 1 대 2 디나이",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "참 장식 | 리틀 농구공",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | chopper 3연속 선제 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "참 장식 | 시체 보관 가방",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 권총 2연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "참 장식 | 리틀 선인장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 3연속 처치 후 폭탄 해체",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "참 장식 | 리틀 햄버거",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Jimpphat 4연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "참 장식 | 리틀 스모키",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 달리면서 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "참 장식 | 리틀 엘드리치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 1 대 2 클러치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "참 장식 | 리틀 해피",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 클러치 제왕",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "참 장식 | 마그마",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 빠른 순발력",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "참 장식 | 리틀 하이에나",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 연속 수류탄 피해",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "참 장식 | 퀵실버",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Spinx 4연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "참 장식 | 리틀 연필",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Brollan 2연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "참 장식 | 피냐타",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Brollan 3연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "참 장식 | 막대 아이스바",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 아이언 맨",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "참 장식 | 리틀 히어로",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 공중 연사",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "참 장식 | 리틀 코끼리",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 아깝게 놓친 에이스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "참 장식 | 리틀 끈적이",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 후방 주의",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "참 장식 | 야자수 서핑보드",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | AWP? 꿈 깨!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "참 장식 | 리틀 코르크",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 하나, 둘, 셋, 돌격!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "참 장식 | 리틀 카메라",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | dgt 아깝게 놓친 클러치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "참 장식 | 리틀 유령",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Tec-9 마스터",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "참 장식 | 리틀 버드",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | dav1deuS 아누비스 2연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "참 장식 | 빅 브레인",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 클러치 성공",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "참 장식 | 바이오메크",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 데저트 이글로 승리",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "참 장식 | 스플래터 캣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 권총 헤드샷 2번",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "참 장식 | 그리티",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 910, FaZe Clan 선수 3연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "참 장식 | 플러피",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | MAC-10의 위력",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "참 장식 | 나무 조각 인형",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 1명이면 충분해",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "참 장식 | 리틀 음양",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 다가오는 공포",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "참 장식 | 리틀 페이스리프트",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 전술 실험",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Dubbele kill chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Hangertje | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | 100 schade door granaten",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Hangertje | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Geen 1-tegen-2-clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Hangertje | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | choppers hattrick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Hangertje | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Dubbele pistoolkill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Hangertje | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Drie kills en een ontmanteling",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Hangertje | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Jimpphats vierdubbele kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Hangertje | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Rennen en schieten",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Hangertje | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | 1-tegen-2-clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Hangertje | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Koning Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Hangertje | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Bliksemsnel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Hangertje | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Granatenkopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Hangertje | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Spinx' vierdubbele kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Hangertje | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Brollans dubbele kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Hangertje | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Brollans driedubbele kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Hangertje | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Wanhoopsdaad",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Hangertje | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Luchtaanval",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Hangertje | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Bijna de aas",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Hangertje | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Achter je",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Hangertje | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Nee, AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Hangertje | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | 3, 2, 1, GO!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Hangertje | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | dgt raakt de clutch kwijt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Hangertje | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Meester van de Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Hangertje | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | dav1deuS' dubbele kill op Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Hangertje | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Geen toeval",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Hangertje | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Desert Eagles slaan toe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Hangertje | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | 2 headshots met pistolen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Hangertje | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | 910's driedubbele kill vs. FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Hangertje | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | De rennende MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Hangertje | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Eén kill volstaat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Hangertje | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Zo dichtbij",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Hangertje | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025-highlight | Test, 1, 2, 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Hangertje | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Hangertje | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Hangertje | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Hangertje | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Hangertje | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Hangertje | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Hangertje | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Hangertje | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Hangertje | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Hangertje | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Hangertje | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Hangertje | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Hangertje | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Hangertje | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | chopper – dobbeltdrap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Anheng | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | 100 skade fra granater",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Anheng | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | 1 mot 2 avverget",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Anheng | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | chopper – trippelåpning",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Anheng | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Dobbelt pistoldrap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Anheng | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Tre drap og en desarmering",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Anheng | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Jimpphat – firedobbelt drap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Anheng | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Gønner på",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Anheng | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Clutch 1 mot 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Anheng | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Kløtsjekongen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Anheng | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Kjappe reaksjonsevner",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Anheng | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | To granater til hodet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Anheng | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Spinx – firedobbelt drap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Anheng | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Brollan – dobbeltdrap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Anheng | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Brollan – trippeldrap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Anheng | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Jernmannen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Anheng | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Flygende skuddveksling",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Anheng | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Nesten ess",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Anheng | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Jeg er rett bak deg",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Anheng | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | AWP nektet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Anheng | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | 3, 2, 1, GÅ!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Anheng | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | dgt – nesten kløtsj",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Anheng | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Tec-9-mesteren",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Anheng | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | dav1deuS – dobbeltdrap på Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Anheng | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Enda en stengt dør",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Anheng | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Overlegen Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Anheng | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | 2 hodeskudd med pistol",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Anheng | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | 910 – trippeldrap mot FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Anheng | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Løpende MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Anheng | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Ett drap er nok",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Anheng | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Frykt ham",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Anheng | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Høydepunkt – Austin 2025 | Tester 1-2-3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Anheng | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Anheng | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Anheng | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Anheng | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Anheng | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Anheng | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Anheng | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Anheng | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Anheng | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Anheng | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Anheng | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Anheng | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Anheng | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Anheng | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | chopper – podwójne zabójstwo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Przywieszka | Mała klątwa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | 100 pkt. obrażeń od granatów",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Przywieszka | Mały wąż",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Udaremnione 1 na 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Przywieszka | Mały koszykarz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | chopper – potrójne wejście",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Przywieszka | Zdechlak",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Podwójne zabójstwo z pistoletu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Przywieszka | Mały kolec",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Potrójne zabójstwo i rozbrojenie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Przywieszka | Bułeczka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Jimpphat – poczwórne zabójstwo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Przywieszka | Dymek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Bieganie i strzelanie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Przywieszka | Mały nadprzyrodzony",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Clutch 1 na 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Przywieszka | Mały zaciesz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Król clutchów",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Przywieszka | Magmatuda",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Refleks jak u kota",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Przywieszka | Mały rechot",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Dwa granaty w głowę",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Przywieszka | Żywe srebro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Spinx – poczwórne zabójstwo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Przywieszka | Mały numer 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Brollan – podwójne zabójstwo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Przywieszka | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Brollan – potrójne zabójstwo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Przywieszka | Kieszonkowy lizak",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Człowiek z żelaza",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Przywieszka | Mały bohater",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Latający grad kul",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Przywieszka | Mały kieł",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Prawie as",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Przywieszka | Mała ohyda",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Jestem tuż za tobą",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Przywieszka | Luźny zwis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Nie dla was AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Przywieszka | Mały Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | 3, 2, 1, start!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Przywieszka | Małe chwile",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | dgt – prawie clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Przywieszka | Mały straszak",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Mistrz Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Przywieszka | Mały kwil",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | dav1deuS – podwójne zabójstwo na Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Przywieszka | Duży mózg",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Ugrywanie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Przywieszka | Biomechaniczny",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Deagle rządzi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Przywieszka | Kot rozbryzgowy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | 2 główki z pistoletu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Przywieszka | Zdeterminowany",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | 910 – potrójne zabójstwo kontra FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Przywieszka | Puszek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | MAC-10 w biegu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Przywieszka | Wystrugany",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Zabić jednego wystarczy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Przywieszka | Małe zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Bójcie się go",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Przywieszka | Mały lifting twarzy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Zagranie z BLAST.tv Austin 2025 | Test123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Przywieszka | Mały gryzak",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Przywieszka | Mały Cholerny",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Przywieszka | Mała klucha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Przywieszka | Bombowe graffiti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Przywieszka | Brokatowa bomba",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Przywieszka | Małe eko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Przywieszka | Głodne oczy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Przywieszka | Wszechwidzące oko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Przywieszka | Mała Wielka Stopa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Przywieszka | Ósemka lidera",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Przywieszka | Bomba błyskowa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Przywieszka | Płomyczek",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Przywieszka | Butanowy brat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Przywieszka | Doktor Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | chopper leva dois",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Chaveiro | Zicadinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | 100 de dano com utilitários",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Chaveiro | Serpentinha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | 1x2 negado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Chaveiro | Basquetinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | chopper entra e leva três",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Chaveiro | Peso Morto",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Levando dois com a pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Chaveiro | Alfinetadinha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Matança tripla e desarmando no A",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Chaveiro | Burguinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Jimpphat leva quatro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Chaveiro | Fumacinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Correndo e atirando",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Chaveiro | Ancestralzinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Virando um 1x2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Chaveiro | Felizinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Magia tripla",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Chaveiro | Magnânimo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Reação rápida",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Chaveiro | Risonhinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Duas granadas na cabeça",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Chaveiro | Mercúrio",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Spinx leva quatro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Chaveiro | Lapisinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Brollan leva dois",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Chaveiro | Pinhatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Brollan leva três",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Chaveiro | Picolino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Bombardeado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Chaveiro | Heroizinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Controle aéreo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Chaveiro | Presinha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Semilimpa",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Chaveiro | Gosminha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Eu ajudo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Chaveiro | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | AWP negada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Chaveiro | Vinhozinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | 3, 2, 1, vai!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Chaveiro | Momentinhos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | dgt quase vence o clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Chaveiro | Fantasminha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Mestre da Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Chaveiro | Guchinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | dav1deuS leva dois em Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Chaveiro | Cerebrão",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Clutch apertado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Chaveiro | Biomeca",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Supremacia da Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Chaveiro | Gato Salpicado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Dois tiros na cabeça com a pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Chaveiro | Ousado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | 910 leva três contra a FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Chaveiro | Bichano",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Correndo com a MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Chaveiro | Entalhado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Basta matar um",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Chaveiro | Zenzinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Tenham medo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Chaveiro | Plastificado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Destaque do Austin 2025 | Testando, 1-2-3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Chaveiro | Mordedorzinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Chaveiro | Sangrentinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Chaveiro | Bolinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Chaveiro | Etiqueta Explosiva",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Chaveiro | Bomba Purpurinada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Chaveiro | Equinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Chaveiro | Olhos Famintos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Chaveiro | Globo Ocular",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Chaveiro | Ietinho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Chaveiro | Bola 8 Mestre",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Chaveiro | Bomba de Luz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Chaveiro | Ferninho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Chaveiro | Butaninho",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Chaveiro | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | chopper matou dois",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Amuleto | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | 100 de dano por utilitários",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Amuleto | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | 1v2 negado",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Amuleto | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | chopper entrou a matar três",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Amuleto | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | donk matou dois com a pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Amuleto | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Três vítimas e um desarme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Amuleto | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Jimpphat matou quatro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Amuleto | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Correr aos tiros",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Amuleto | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Clutch 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Amuleto | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Rei dos clutches",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Amuleto | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Bons reflexos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Amuleto | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Duas granadas na tola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Amuleto | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Spinx matou quatro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Amuleto | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Brollan matou dois",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Amuleto | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Brollan matou três",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Amuleto | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Homem de ferro",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Amuleto | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Perigo no ar",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Amuleto | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Quase todos",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Amuleto | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Eu ajudo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Amuleto | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | AWP negada",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Amuleto | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | 3, 2, 1, VAI!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Amuleto | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | dgt: clutch fora do tempo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Amuleto | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Mestre da Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Amuleto | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | dav1deuS matou dois no Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Amuleto | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | 1v3 explosivo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Amuleto | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Supremacia da Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Amuleto | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Dois tiros na cabeça com a pistola",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Amuleto | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | 910 matou três da FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Amuleto | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Turbo MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Amuleto | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Bastou morrer um",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Amuleto | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | O temido",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Amuleto | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Destaque | Austin 2025 | Teste, 1 2 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Amuleto | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Amuleto | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Amuleto | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Amuleto | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Amuleto | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Amuleto | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Amuleto | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Amuleto | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Amuleto | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Amuleto | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Amuleto | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Amuleto | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Amuleto | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Amuleto | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | chopper – ucidere dublă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Breloc | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | 100 de răni de la utilitare",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Breloc | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | 1v2 negat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Breloc | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | chopper – tripletă de prim-ucideri",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Breloc | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Ucidere dublă cu pistolul",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Breloc | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Ucidere triplă și dezamorsare",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Breloc | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Jimpphat – ucidere cvadruplă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Breloc | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Alergând și trăgând",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Breloc | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Situație-limită 1 vs 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Breloc | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Regele situațiilor-limită",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Breloc | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Reacții rapide",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Breloc | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Două grenade la cap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Breloc | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Spinx – ucidere cvadruplă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Breloc | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Brollan – ucidere dublă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Breloc | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Brollan – ucidere triplă",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Breloc | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Omul de oțel",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Breloc | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Rafala din săritură",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Breloc | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Aproape de un as",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Breloc | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Sunt chiar în spatele tău",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Breloc | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | AWP negat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Breloc | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | 3-2-1-HAI!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Breloc | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | dgt – reușită nereușită",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Breloc | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Maestru în Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Breloc | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | dav1deuS – ucidere dublă pe Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Breloc | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Omul situațiilor-limită",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Breloc | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Breloc | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Ucidere dublă cu lovituri în cap",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Breloc | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | 910 Triple Kill vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Breloc | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Breloc | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Breloc | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Breloc | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Moment deosebit | Austin 2025 | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Breloc | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Breloc | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Breloc | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Breloc | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Breloc | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Breloc | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Breloc | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Breloc | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Breloc | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Breloc | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Breloc | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Breloc | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Breloc | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Breloc | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | chopper — двойное убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Брелок | Крошка-проклятье",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Гранат достаточно",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Брелок | Крошка Змей",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Проигрыш одного против двоих",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Брелок | Крошка Баскетболист",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | chopper — тройное убийство при заходе",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Брелок | Мёртвый груз",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Двойное убийство из пистолета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Брелок | Колючий крошка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Тройное убийство и обезвреживание",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Брелок | Крошка Бургер",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Jimpphat — четверное убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Брелок | Крошка Дымок",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Беги и стреляй",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Брелок | Зловещий крошка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Схватка одного против двух",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Брелок | Крошка Весельчак",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Король превозмогания",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Брелок | Магмовый",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Быстрая реакция",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Брелок | Крошка Хохотун",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Две гранаты в голову",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Брелок | Ртутный",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Spinx — четверное убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Брелок | Крошка Карандаш",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Brollan — двойное убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Брелок | Крошка Пиньята",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Brollan — тройное убийство",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Брелок | Карманный попсикл",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Железный человек",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Брелок | Крошка Герой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Очередь в полёте",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Брелок | Крошка Бивень",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Почти эйс",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Брелок | Крошка Слизь",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Я прямо за тобой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Брелок | Гавайский вайб",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Сам не ам и другим AWP не дам",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Брелок | Крошка Винодел",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | На счёт «три»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Брелок | Крошка Полароид",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | dgt — почти затащил",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Брелок | Крошка Привидение",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Мастер Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Брелок | Крошка Птенчик",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | dav1deuS — двойное убийство на Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Брелок | Мегамозг",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Смочь превозмочь",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Брелок | Биомеханический",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Превосходство «Дигла»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Брелок | Взрывкот",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | 2 в голову из пистолета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Брелок | Жёсткий",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | 910 — тройное убийство против FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Брелок | Пушок",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Бегущий MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Брелок | Резной",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Одного убийства достаточно",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Брелок | Крошка Дзэн",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | Бойтесь его",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Брелок | Крошка с подтяжкой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Яркий момент BLAST.tv Austin Major 2025 | 123проверка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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": "Брелок | Восьмёрка лидера",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | choppers dubbelkill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Hänge | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | 100 skada från granater",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Hänge | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Nekad 1v2-vinst",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Hänge | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | choppers trippla öppningskill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Hänge | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Dubbelkill med pistol",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Hänge | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Trippelkill och desarmering",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Hänge | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Jimpphats fyrdubbla kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Hänge | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Kuta och skjuta",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Hänge | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Underläge: 1v2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Hänge | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Clutch-kungen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Hänge | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Snabba reflexer",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Hänge | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Två granater i skallen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Hänge | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Spinx' fyrdubbla kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Hänge | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Brollans dubbelkill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Hänge | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Brollans trippelkill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Hänge | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Järnmannen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Hänge | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Luftanfall",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Hänge | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Inget ess i rockärmen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Hänge | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Jag är alldeles bakom dig",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Hänge | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | AWP nekad",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Hänge | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | KLARA ... FÄRDIGA ... GÅ!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Hänge | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | dgt, ruskigt nära",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Hänge | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Tec-9-mästare",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Hänge | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | dav1deuS' dubbelkill på Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Hänge | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Vilken clutch!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Hänge | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Desert Eagle är överlägsen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Hänge | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Två huvudskott med pistol",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Hänge | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | 910:s trippelkill mot FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Hänge | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | På väg med MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Hänge | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Ett kill räcker",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Hänge | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Att frukta",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Hänge | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Höjdpunkt: Austin 2025 | Testar 1 2 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Hänge | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Hänge | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Hänge | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Hänge | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Hänge | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Hänge | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Hänge | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Hänge | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Hänge | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Hänge | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Hänge | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Hänge | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Hänge | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Hänge | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | chopper Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "พวงกุญแจ | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 100 Utility Damage",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "พวงกุญแจ | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 1v2 Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "พวงกุญแจ | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | chopper Triple Entry",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "พวงกุญแจ | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Double Pistol Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "พวงกุญแจ | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Triple Kill And A Defuse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "พวงกุญแจ | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Jimpphat Quadra Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "พวงกุญแจ | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | The Run And Gun",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "พวงกุญแจ | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 1v2 Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "พวงกุญแจ | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Clutch King",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "พวงกุญแจ | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Quick Reactions",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "พวงกุญแจ | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Two Nades To The Head",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "พวงกุญแจ | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Spinx Quadra Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "พวงกุญแจ | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Brollan Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "พวงกุญแจ | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Brollan Triple Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "พวงกุญแจ | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | The Iron Man",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "พวงกุญแจ | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | The Flying Spray",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "พวงกุญแจ | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Almost The Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "พวงกุญแจ | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | I'm Right Behind You",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "พวงกุญแจ | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | AWP Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "พวงกุญแจ | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 3-2-1-GO!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "พวงกุญแจ | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | dgt Almost Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "พวงกุญแจ | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Tec-9 Master",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "พวงกุญแจ | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | dav1deuS Double Anubis Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "พวงกุญแจ | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Clutching Up",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "พวงกุญแจ | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "พวงกุญแจ | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 2 Pistol Headshots",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "พวงกุญแจ | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | 910 Triple Kill vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "พวงกุญแจ | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "พวงกุญแจ | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "พวงกุญแจ | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Fear Him",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "พวงกุญแจ | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | chopper - İki Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Süs | Minik Lanet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | 100 El Bombası Hasarı",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Süs | Yılancık",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | 1v2 Engellendi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Süs | Minik Topçu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | chopper - İlk Üç Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Süs | Ölü Ağırlık",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | İki Tabanca Leşi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Süs | Mini Kaktüs",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Üç Leş, Bir İmha",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Süs | Mini Burger",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Jimpphat - Dört Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Süs | Yanık Minik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Hızlı ve Tehlikeli",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Süs | Tuhaf Minik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | 1v2 Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Süs | Mutlu Minik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Clutch Kralı",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Süs | Magmatüd",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Hızlı Refleksler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Süs | Geveze Minik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Kafaya İki El Bombası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Süs | Cıva Adam",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Spinx - Dört Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Süs | Minik Kalem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Brollan - İki Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Süs | Minik Pinyata",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Brollan - Üç Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Süs | Dondurmacık",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Demir Adam",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Süs | Kahramancık",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Uçan Taramalı",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Süs | Minik Fil",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Kusursuz Sayılır",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Süs | Minik Sümüklü",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Tam Arkandayım",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Süs | Keyif Düşkünü",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | AWP Verilmedi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Süs | Minik Mantar",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | 3,2,1, BAŞLA!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Süs | Foto Minik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | dgt - Neredeyse Clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Süs | Minik Ruh",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Tec-9 Ustası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Süs | Minik Kuş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | dav1deuS - Anubis'te İki Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Süs | Koca Beyin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Clutch Atıyor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Süs | Biyomakine",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Deagle Üstünlüğü",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Süs | Vahşi Kedicik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Tabancayla İki Kafadan Vuruş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Süs | Cesur",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | 910 - FaZe'e Karşı Üç Leş",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Süs | Tombik",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | MAC-10 Koşusu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Süs | Yontma Adam",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Bir Leş Yeter",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Süs | Minik Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Korkutucu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Süs | Minik Surat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 Önemli Anlar | Test 1, 2, 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Süs | Minik Isırıcı",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Süs | Kanlı Ufaklık",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Süs | Tombulcuk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Süs | Grafitili Bomba",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Süs | Simli Bomba",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Süs | Minik Çevreci",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Süs | Aç Gözler",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Süs | Küre Göz",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Süs | Minik Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Süs | Top 8 IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Süs | Flaş Bombası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Süs | Alev Topu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Süs | Bütan Küresi",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Süs | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Подвійне вбивство від chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Брелок | Тотем",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | 100 шкоди від гранат",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Брелок | Плазун",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Невдача для одного проти двох",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Брелок | Баскетболіст",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Потрійне вбивство від chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Брелок | Труп",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Подвійне вбивство з пістолета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Брелок | Колючий",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Потрійне вбивство і знешкодження",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Брелок | Бургер",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Чотири вбивства від Jimpphat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Брелок | Копчений",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Постріл на бігу",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Брелок | Істота",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Клатч одного проти двох",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Брелок | Веселун",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Король клатчу",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Брелок | Магма",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Швидка реакція",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Брелок | Пустун",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Дві гранати в голову",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Брелок | Ртуть",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Чотирикратне вбивство від Spinx",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Брелок | Олівчик",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Brollan Double Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Брелок | Піньята",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Brollan Triple Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Брелок | Льодяник",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | The Iron Man",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Брелок | Супергерой",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | The Flying Spray",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Брелок | Бивень",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Almost The Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Брелок | Шмаркля",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | I'm Right Behind You",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Брелок | Алоха",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | AWP Denied",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Брелок | Корок",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | 3-2-1-GO!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Брелок | Полароїд",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | dgt: майже клатч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Брелок | Привид",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Tec-9 Master",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Брелок | Тамагочі",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | dav1deuS Double Anubis Kill",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Брелок | Великий мозок",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Clutching Up",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Брелок | Біомех",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Deagle Supremacy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Брелок | Злобний кіт",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | 2 Pistol Headshots",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Брелок | Командо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | 910 Triple Kill vs FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Брелок | Пушок",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | The Running MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Брелок | Стружка",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | One Kill Is Enough",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Брелок | Дзен",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Бійтеся його",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Брелок | Красунчик",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Один, два, три… мене чути?",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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": "Брелок | Вісімка",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | chopper — Giết 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "Móc treo | Lil' Curse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | 100 sát thương phụ kiện",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "Móc treo | Lil' Serpent",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Chối bỏ 1 chọi 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "Móc treo | Lil' Baller",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | chopper — 3 phát mở màn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "Móc treo | Dead Weight",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Súng lục hai mạng",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "Móc treo | Lil' Prick",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Bắt ba con cá, gỡ một quả bom",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "Móc treo | Lil' Buns",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Jimpphat — Giết 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "Móc treo | Lil' Smokey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Vừa chạy vừa bắn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "Móc treo | Lil' Eldritch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | 1 chọi 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "Móc treo | Lil' Happy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Vua gánh tạ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "Móc treo | Magmatude",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Phản ứng nhanh nhạy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "Móc treo | Lil' Cackle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Hai quả lựu trúng ngay đầu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "Móc treo | Quick Silver",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Spinx — Giết 4",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "Móc treo | Lil' No. 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Brollan — Giết 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "Móc treo | Piñatita",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Brollan — Giết 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "Móc treo | Pocket Pop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Người Sắt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "Móc treo | Lil' Hero",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Bay và xoáy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "Móc treo | Lil' Tusk",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Mém được 5 mạng",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "Móc treo | Lil' Goop",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Ngay sau lưng mi đó",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "Móc treo | Hang Loose",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Đừng hòng lấy AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "Móc treo | Lil' Vino",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | 3-2-1-CHIẾN!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "Móc treo | Lil' Moments",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | dgt — Suýt gánh tạ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "Móc treo | Lil' Boo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Bậc thầy Tec-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "Móc treo | Lil' Chirp",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | dav1deuS — Giết 2 ở Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "Móc treo | Big Brain",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Pha gánh tạ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "Móc treo | Biomech",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Deagle tối thượng",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "Móc treo | Splatter Cat",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Súng lục xuyên 2 táo",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "Móc treo | Gritty",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | 910 — Giết 3 khi đấu FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "Móc treo | Fluffy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Cầm MAC-10 chạy long nhong",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "Móc treo | Whittle Guy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Một mạng là đủ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "Móc treo | Lil' Zen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Hãy sợ hắn",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "Móc treo | Lil' Facelift",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Tiêu điểm Austin 2025 | Thử xem, 1, 2, 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
"id": "69",
|
||||
"name": "Móc treo | Lil' Chomper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-69.png"
|
||||
},
|
||||
{
|
||||
"id": "70",
|
||||
"name": "Móc treo | Lil' Bloody",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-70.png"
|
||||
},
|
||||
{
|
||||
"id": "71",
|
||||
"name": "Móc treo | Lil' Dumplin'",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-71.png"
|
||||
},
|
||||
{
|
||||
"id": "72",
|
||||
"name": "Móc treo | Bomb Tag",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-72.png"
|
||||
},
|
||||
{
|
||||
"id": "73",
|
||||
"name": "Móc treo | Glitter Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-73.png"
|
||||
},
|
||||
{
|
||||
"id": "74",
|
||||
"name": "Móc treo | Lil' Eco",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-74.png"
|
||||
},
|
||||
{
|
||||
"id": "75",
|
||||
"name": "Móc treo | Hungry Eyes",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-75.png"
|
||||
},
|
||||
{
|
||||
"id": "76",
|
||||
"name": "Móc treo | Eye of Ball",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-76.png"
|
||||
},
|
||||
{
|
||||
"id": "77",
|
||||
"name": "Móc treo | Lil' Yeti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-77.png"
|
||||
},
|
||||
{
|
||||
"id": "78",
|
||||
"name": "Móc treo | 8 Ball IGL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-78.png"
|
||||
},
|
||||
{
|
||||
"id": "79",
|
||||
"name": "Móc treo | Flash Bomb",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-79.png"
|
||||
},
|
||||
{
|
||||
"id": "80",
|
||||
"name": "Móc treo | Lil' Ferno",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-80.png"
|
||||
},
|
||||
{
|
||||
"id": "81",
|
||||
"name": "Móc treo | Butane Buddy",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-81.png"
|
||||
},
|
||||
{
|
||||
"id": "82",
|
||||
"name": "Móc treo | Dr. Brian",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-82.png"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "挂件 | 小诅咒",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 天雷地火无处逃",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "挂件 | 小火蛇",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 1v2残局大超关键",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "挂件 | 小球员",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 关键3杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "挂件 | 生命之重",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 手枪双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "挂件 | 小刺头",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 三杀并拆除炸弹",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "挂件 | 小圆堡",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 四杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "挂件 | 小烟鬼",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 跑打",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "挂件 | 小邪灵",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 1v2残局",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "挂件 | 小嗨皮",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 残局王者",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "挂件 | 岩浆巨兽",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 反应又快又准",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "挂件 | 小咯咯",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 两颗满雷炸丝血",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "挂件 | 银色闪电",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 四杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "挂件 | 小笔头",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "挂件 | 皮纳塔",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 3杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "挂件 | 口袋泡泡",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 天雷地火无处藏",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "挂件 | 小铁侠",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 吹风机王朝跳爆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "挂件 | 小象牙",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 可惜差点五杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "挂件 | 小粘液",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 露就秒",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "挂件 | 松弛仔",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 我用不了你也别用",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "挂件 | 小酒鬼",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 3,2,1,冲!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "挂件 | 小咔嚓",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 可惜!就差一点",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "挂件 | 小布",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | TEC9大师",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "挂件 | 小啾啾",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "挂件 | 大聪明",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 精彩残局",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "挂件 | 生化机械",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 至尊沙鹰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "挂件 | 泼天猫",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 手枪双爆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "挂件 | 头铁MVP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 三杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "挂件 | 毛耸耸",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 跑打吹风机",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "挂件 | 小雕刻家",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 单杀但退敌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "挂件 | 小道长",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 致命空枪",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "挂件 | 小变脸",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 敢于尝试新战",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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": "挂件 | 黑八指挥",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
@@ -165,163 +165,228 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-33.png"
|
||||
},
|
||||
{
|
||||
"id": "202521",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | chopper 二連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper2kvsmouzonmirage1.png"
|
||||
"id": "38",
|
||||
"name": "吊飾 | 小詛咒",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-38.png"
|
||||
},
|
||||
{
|
||||
"id": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 100 工具傷害",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
"id": "39",
|
||||
"name": "吊飾 | 小毒蛇",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-39.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 1v2 反制",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.png"
|
||||
"id": "40",
|
||||
"name": "吊飾 | 小籃球",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-40.png"
|
||||
},
|
||||
{
|
||||
"id": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | chopper 三重進擊",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
"id": "41",
|
||||
"name": "吊飾 | 遺體包",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-41.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 手槍二連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
"id": "42",
|
||||
"name": "吊飾 | 小仙人掌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-42.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 三殺加拆彈",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
"id": "43",
|
||||
"name": "吊飾 | 小漢堡",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-43.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Jimpphat 四連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
"id": "44",
|
||||
"name": "吊飾 | 小雪茄",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-44.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 跑轟戰術",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
"id": "45",
|
||||
"name": "吊飾 | 小古神",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-45.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 1v2 殘局",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
"id": "46",
|
||||
"name": "吊飾 | 小樂子",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-46.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 殘局之王",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
"id": "47",
|
||||
"name": "吊飾 | 熱岩漿",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-47.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 極速反應",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
"id": "48",
|
||||
"name": "吊飾 | 小咯咯",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-48.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 雙吃榴彈",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
"id": "49",
|
||||
"name": "吊飾 | 水銀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-49.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Spinx 四連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
"id": "50",
|
||||
"name": "吊飾 | 小鉛筆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-50.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Brollan 二連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.png"
|
||||
"id": "51",
|
||||
"name": "吊飾 | 皮納塔",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-51.png"
|
||||
},
|
||||
{
|
||||
"id": "202532",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Brollan 三連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan3kvsspiritondust2.png"
|
||||
"id": "52",
|
||||
"name": "吊飾 | 冰棒碰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-52.png"
|
||||
},
|
||||
{
|
||||
"id": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 鋼鐵人",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
"id": "53",
|
||||
"name": "吊飾 | 小英雄",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-53.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 飛行掃射",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
"id": "54",
|
||||
"name": "吊飾 | 小長牙",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-54.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 錯失 Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
"id": "55",
|
||||
"name": "吊飾 | 小綠泥",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-55.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 就在你身後",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
"id": "56",
|
||||
"name": "吊飾 | 放輕鬆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-56.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 不讓 AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.png"
|
||||
"id": "57",
|
||||
"name": "吊飾 | 小瓶塞",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-57.png"
|
||||
},
|
||||
{
|
||||
"id": "202529",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 3、2、1,上!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.png"
|
||||
"id": "58",
|
||||
"name": "吊飾 | 小留影",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-58.png"
|
||||
},
|
||||
{
|
||||
"id": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | dgt 差點秀到",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
"id": "59",
|
||||
"name": "吊飾 | 小幽靈",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-59.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Tec-9 專家",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
"id": "60",
|
||||
"name": "吊飾 | 小電子雞",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-60.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | dav1deuS Anubis 二連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
"id": "61",
|
||||
"name": "吊飾 | 大腦袋",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-61.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 扭轉局勢",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
"id": "62",
|
||||
"name": "吊飾 | 生物機械",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-62.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | Deagle 至上",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
"id": "63",
|
||||
"name": "吊飾 | 地獄貓",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-63.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 手槍雙爆頭",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
"id": "64",
|
||||
"name": "吊飾 | 勇敢無畏",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-64.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 910 對 FaZe 三連殺",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
"id": "65",
|
||||
"name": "吊飾 | 毛茸茸",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-65.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 跑轟 MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
"id": "66",
|
||||
"name": "吊飾 | 木頭人",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-66.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 一殺就夠",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
"id": "67",
|
||||
"name": "吊飾 | 小陰陽",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-67.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 恐怖存在",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
"id": "68",
|
||||
"name": "吊飾 | 小拉皮",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/keychain-68.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 精彩片段 | 測試 123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.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"
|
||||
}
|
||||
]
|
||||
@@ -423,5 +423,55 @@
|
||||
"id": "86",
|
||||
"name": "Музикален комплект | Perfect World — Ay Hey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||
},
|
||||
{
|
||||
"id": "87",
|
||||
"name": "Музикален комплект | Adam Beyer — Red Room",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-87.png"
|
||||
},
|
||||
{
|
||||
"id": "88",
|
||||
"name": "Музикален комплект | Ghost — Skeletá",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-88.png"
|
||||
},
|
||||
{
|
||||
"id": "89",
|
||||
"name": "Музикален комплект | HEALTH — RAT WARS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-89.png"
|
||||
},
|
||||
{
|
||||
"id": "90",
|
||||
"name": "Музикален комплект | James and the Cold Gun — Chewing Glass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-90.png"
|
||||
},
|
||||
{
|
||||
"id": "91",
|
||||
"name": "Музикален комплект | Jonathan Young — Starship Velociraptor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-91.png"
|
||||
},
|
||||
{
|
||||
"id": "92",
|
||||
"name": "Музикален комплект | Juelz — Floorspace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-92.png"
|
||||
},
|
||||
{
|
||||
"id": "93",
|
||||
"name": "Музикален комплект | Killer Mike — MICHAEL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-93.png"
|
||||
},
|
||||
{
|
||||
"id": "94",
|
||||
"name": "Музикален комплект | PVRIS — Evergreen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-94.png"
|
||||
},
|
||||
{
|
||||
"id": "95",
|
||||
"name": "Музикален комплект | Selective Response — No Love Only Pleasure",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-95.png"
|
||||
},
|
||||
{
|
||||
"id": "96",
|
||||
"name": "Музикален комплект | Tigercub — The Perfume of Decay",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-96.png"
|
||||
}
|
||||
]
|
||||
@@ -423,5 +423,55 @@
|
||||
"id": "86",
|
||||
"name": "Hudební balíček | Perfect World – Ay Hey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||
},
|
||||
{
|
||||
"id": "87",
|
||||
"name": "Hudební balíček | Adam Beyer – Red Room",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-87.png"
|
||||
},
|
||||
{
|
||||
"id": "88",
|
||||
"name": "Hudební balíček | Ghost – Skeletá",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-88.png"
|
||||
},
|
||||
{
|
||||
"id": "89",
|
||||
"name": "Hudební balíček | HEALTH – RAT WARS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-89.png"
|
||||
},
|
||||
{
|
||||
"id": "90",
|
||||
"name": "Hudební balíček | James and the Cold Gun – Chewing Glass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-90.png"
|
||||
},
|
||||
{
|
||||
"id": "91",
|
||||
"name": "Hudební balíček | Jonathan Young – Starship Velociraptor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-91.png"
|
||||
},
|
||||
{
|
||||
"id": "92",
|
||||
"name": "Hudební balíček | Juelz – Floorspace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-92.png"
|
||||
},
|
||||
{
|
||||
"id": "93",
|
||||
"name": "Hudební balíček | Killer Mike – MICHAEL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-93.png"
|
||||
},
|
||||
{
|
||||
"id": "94",
|
||||
"name": "Hudební balíček | PVRIS – Evergreen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-94.png"
|
||||
},
|
||||
{
|
||||
"id": "95",
|
||||
"name": "Hudební balíček | Selective Response – No Love Only Pleasure",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-95.png"
|
||||
},
|
||||
{
|
||||
"id": "96",
|
||||
"name": "Hudební balíček | Tigercub – The Perfume of Decay",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-96.png"
|
||||
}
|
||||
]
|
||||
@@ -423,5 +423,55 @@
|
||||
"id": "86",
|
||||
"name": "Musiksæt | Perfekt World, Ay Hey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||
},
|
||||
{
|
||||
"id": "87",
|
||||
"name": "Musiksæt | Adam Beyer, Red Room",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-87.png"
|
||||
},
|
||||
{
|
||||
"id": "88",
|
||||
"name": "Musiksæt | Ghost, Skeletá",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-88.png"
|
||||
},
|
||||
{
|
||||
"id": "89",
|
||||
"name": "Musiksæt | HEALTH, RAT WARS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-89.png"
|
||||
},
|
||||
{
|
||||
"id": "90",
|
||||
"name": "Musiksæt | James and the Cold Gun, Chewing Glass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-90.png"
|
||||
},
|
||||
{
|
||||
"id": "91",
|
||||
"name": "Musiksæt | Jonathan Young, Starship Velociraptor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-91.png"
|
||||
},
|
||||
{
|
||||
"id": "92",
|
||||
"name": "Musiksæt | Juelz, Floorspace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-92.png"
|
||||
},
|
||||
{
|
||||
"id": "93",
|
||||
"name": "Musiksæt | Killer Mike, MICHAEL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-93.png"
|
||||
},
|
||||
{
|
||||
"id": "94",
|
||||
"name": "Musiksæt | PVRIS, Evergreen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-94.png"
|
||||
},
|
||||
{
|
||||
"id": "95",
|
||||
"name": "Musiksæt | Selective Response, No Love Only Pleasure",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-95.png"
|
||||
},
|
||||
{
|
||||
"id": "96",
|
||||
"name": "Musiksæt | Tigercub, The Perfume of Decay",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-96.png"
|
||||
}
|
||||
]
|
||||
@@ -423,5 +423,55 @@
|
||||
"id": "86",
|
||||
"name": "Musikkit | Perfect World, Ay Hey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||
},
|
||||
{
|
||||
"id": "87",
|
||||
"name": "Musikkit | Adam Beyer, Red Room",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-87.png"
|
||||
},
|
||||
{
|
||||
"id": "88",
|
||||
"name": "Musikkit | Ghost, Skeletá",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-88.png"
|
||||
},
|
||||
{
|
||||
"id": "89",
|
||||
"name": "Musikkit | HEALTH, RAT WARS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-89.png"
|
||||
},
|
||||
{
|
||||
"id": "90",
|
||||
"name": "Musikkit | James and the Cold Gun, Chewing Glass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-90.png"
|
||||
},
|
||||
{
|
||||
"id": "91",
|
||||
"name": "Musikkit | Jonathan Young, Starship Velociraptor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-91.png"
|
||||
},
|
||||
{
|
||||
"id": "92",
|
||||
"name": "Musikkit | Juelz, Floorspace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-92.png"
|
||||
},
|
||||
{
|
||||
"id": "93",
|
||||
"name": "Musikkit | Killer Mike, MICHAEL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-93.png"
|
||||
},
|
||||
{
|
||||
"id": "94",
|
||||
"name": "Musikkit | PVRIS, Evergreen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-94.png"
|
||||
},
|
||||
{
|
||||
"id": "95",
|
||||
"name": "Musikkit | Selective Response, No Love Only Pleasure",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-95.png"
|
||||
},
|
||||
{
|
||||
"id": "96",
|
||||
"name": "Musikkit | Tigercub, The Perfume of Decay",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-96.png"
|
||||
}
|
||||
]
|
||||
@@ -423,5 +423,55 @@
|
||||
"id": "86",
|
||||
"name": "Μουσικό κουτί | Perfect World, Ay Hey",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||
},
|
||||
{
|
||||
"id": "87",
|
||||
"name": "Μουσικό κουτί | Adam Beyer, Red Room",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-87.png"
|
||||
},
|
||||
{
|
||||
"id": "88",
|
||||
"name": "Μουσικό κουτί | Ghost, Skeletá",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-88.png"
|
||||
},
|
||||
{
|
||||
"id": "89",
|
||||
"name": "Μουσικό κουτί | HEALTH, RAT WARS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-89.png"
|
||||
},
|
||||
{
|
||||
"id": "90",
|
||||
"name": "Μουσικό κουτί | James and the Cold Gun, Chewing Glass",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-90.png"
|
||||
},
|
||||
{
|
||||
"id": "91",
|
||||
"name": "Μουσικό κουτί | Jonathan Young, Starship Velociraptor",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-91.png"
|
||||
},
|
||||
{
|
||||
"id": "92",
|
||||
"name": "Μουσικό κουτί | Juelz, Floorspace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-92.png"
|
||||
},
|
||||
{
|
||||
"id": "93",
|
||||
"name": "Μουσικό κουτί | Killer Mike, MICHAEL",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-93.png"
|
||||
},
|
||||
{
|
||||
"id": "94",
|
||||
"name": "Μουσικό κουτί | PVRIS, Evergreen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-94.png"
|
||||
},
|
||||
{
|
||||
"id": "95",
|
||||
"name": "Μουσικό κουτί | Selective Response, No Love Only Pleasure",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-95.png"
|
||||
},
|
||||
{
|
||||
"id": "96",
|
||||
"name": "Μουσικό κουτί | Tigercub, The Perfume of Decay",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-96.png"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user