mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-03-12 09:09:49 +00:00
Compare commits
18 Commits
build-386
...
5325caa970
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5325caa970 | ||
|
|
76bcb5bb85 | ||
|
|
10a4691429 | ||
|
|
ae8fb3b677 | ||
|
|
1ef12ed6b2 | ||
|
|
3f174a5013 | ||
|
|
b3f42598e7 | ||
|
|
2079ef5393 | ||
|
|
a633873980 | ||
|
|
d7af2fea89 | ||
|
|
439c6eaf2d | ||
|
|
a7cce74425 | ||
|
|
5b43b2daef | ||
|
|
23cd692032 | ||
|
|
b801b6592a | ||
|
|
be8633f82b | ||
|
|
191773fc5a | ||
|
|
40e18c9663 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -2,4 +2,5 @@
|
||||
bin/
|
||||
obj/
|
||||
website/getskins.php
|
||||
.idea/
|
||||
.idea/
|
||||
WeaponPaints.sln.DotSettings.user
|
||||
|
||||
@@ -91,6 +91,12 @@ namespace WeaponPaints
|
||||
[JsonPropertyName("DatabaseName")]
|
||||
public string DatabaseName { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("DatabaseType")]
|
||||
public string DatabaseType { get; set; } = "mysql";
|
||||
|
||||
[JsonPropertyName("DatabasePath")]
|
||||
public string DatabasePath { get; set; } = "weaponpaints.db";
|
||||
|
||||
[JsonPropertyName("CmdRefreshCooldownSeconds")]
|
||||
public int CmdRefreshCooldownSeconds { get; set; } = 3;
|
||||
|
||||
|
||||
25
Database.cs
25
Database.cs
@@ -1,23 +1,20 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using MySqlConnector;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
public class Database(string dbConnectionString)
|
||||
public class Database
|
||||
{
|
||||
public async Task<MySqlConnection> GetConnectionAsync()
|
||||
private readonly IDatabaseConnection _connection;
|
||||
|
||||
public Database(IDatabaseConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
var connection = new MySqlConnection(dbConnectionString);
|
||||
await connection.OpenAsync();
|
||||
return connection;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
WeaponPaints.Instance.Logger.LogError($"Unable to connect to database: {ex.Message}");
|
||||
throw;
|
||||
}
|
||||
_connection = connection;
|
||||
}
|
||||
|
||||
public async Task<IDatabaseConnection> GetConnectionAsync()
|
||||
{
|
||||
await _connection.OpenAsync();
|
||||
return _connection;
|
||||
}
|
||||
}
|
||||
}
|
||||
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)
|
||||
|
||||
14
IDatabaseConnection.cs
Normal file
14
IDatabaseConnection.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Data;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
public interface IDatabaseConnection : IAsyncDisposable, IDisposable
|
||||
{
|
||||
Task OpenAsync();
|
||||
Task CloseAsync();
|
||||
Task<IDbTransaction> BeginTransactionAsync();
|
||||
Task CommitTransactionAsync(IDbTransaction transaction);
|
||||
Task RollbackTransactionAsync(IDbTransaction transaction);
|
||||
IDbConnection GetConnection();
|
||||
}
|
||||
}
|
||||
68
MySQLConnection.cs
Normal file
68
MySQLConnection.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using MySqlConnector;
|
||||
using System.Data;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
public class MySQLConnection : IDatabaseConnection
|
||||
{
|
||||
private readonly MySqlConnection _connection;
|
||||
private readonly ILogger _logger;
|
||||
|
||||
public MySQLConnection(string connectionString, ILogger logger)
|
||||
{
|
||||
_connection = new MySqlConnection(connectionString);
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public async Task OpenAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
await _connection.OpenAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError($"Unable to connect to MySQL database: {ex.Message}");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public async Task CloseAsync()
|
||||
{
|
||||
await _connection.CloseAsync();
|
||||
}
|
||||
|
||||
public async Task<IDbTransaction> BeginTransactionAsync()
|
||||
{
|
||||
return await _connection.BeginTransactionAsync();
|
||||
}
|
||||
|
||||
public Task CommitTransactionAsync(IDbTransaction transaction)
|
||||
{
|
||||
transaction.Commit();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public Task RollbackTransactionAsync(IDbTransaction transaction)
|
||||
{
|
||||
transaction.Rollback();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public IDbConnection GetConnection()
|
||||
{
|
||||
return _connection;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_connection?.Dispose();
|
||||
}
|
||||
|
||||
public async ValueTask DisposeAsync()
|
||||
{
|
||||
await _connection.DisposeAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
68
SQLiteConnection.cs
Normal file
68
SQLiteConnection.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using Microsoft.Data.Sqlite;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Data;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
public class SQLiteConnection : IDatabaseConnection
|
||||
{
|
||||
private readonly Microsoft.Data.Sqlite.SqliteConnection _connection;
|
||||
private readonly ILogger _logger;
|
||||
|
||||
public SQLiteConnection(string connectionString, ILogger logger)
|
||||
{
|
||||
_connection = new Microsoft.Data.Sqlite.SqliteConnection(connectionString);
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public async Task OpenAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
await _connection.OpenAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError($"Unable to connect to SQLite database: {ex.Message}");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public async Task CloseAsync()
|
||||
{
|
||||
await _connection.CloseAsync();
|
||||
}
|
||||
|
||||
public async Task<IDbTransaction> BeginTransactionAsync()
|
||||
{
|
||||
return await _connection.BeginTransactionAsync();
|
||||
}
|
||||
|
||||
public Task CommitTransactionAsync(IDbTransaction transaction)
|
||||
{
|
||||
transaction.Commit();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public Task RollbackTransactionAsync(IDbTransaction transaction)
|
||||
{
|
||||
transaction.Rollback();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public IDbConnection GetConnection()
|
||||
{
|
||||
return _connection;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_connection?.Dispose();
|
||||
}
|
||||
|
||||
public async ValueTask DisposeAsync()
|
||||
{
|
||||
await _connection.DisposeAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
227
Utility.cs
227
Utility.cs
@@ -20,89 +20,166 @@ namespace WeaponPaints
|
||||
try
|
||||
{
|
||||
await using var connection = await WeaponPaints.Database.GetConnectionAsync();
|
||||
await using var transaction = await connection.BeginTransactionAsync();
|
||||
string[] createTableQueries = GetCreateTableQueries();
|
||||
|
||||
// Log para debug
|
||||
WeaponPaints.Instance.Logger.LogInformation($"[WeaponPaints] Creating {createTableQueries.Length} tables for {Config?.DatabaseType} database");
|
||||
|
||||
try
|
||||
foreach (var query in createTableQueries)
|
||||
{
|
||||
string[] createTableQueries =
|
||||
[
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_skins` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`weapon_defindex` int(6) NOT NULL,
|
||||
`weapon_paint_id` int(6) NOT NULL,
|
||||
`weapon_wear` float NOT NULL DEFAULT 0.000001,
|
||||
`weapon_seed` int(16) NOT NULL DEFAULT 0,
|
||||
`weapon_nametag` VARCHAR(128) DEFAULT NULL,
|
||||
`weapon_stattrak` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`weapon_stattrak_count` int(10) NOT NULL DEFAULT 0,
|
||||
`weapon_sticker_0` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_1` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_2` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_3` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_4` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_keychain` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0' COMMENT 'id;x;y;z;seed',
|
||||
UNIQUE (`steamid`, `weapon_team`, `weapon_defindex`) -- Add unique constraint here
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_knife` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`knife` varchar(64) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`) -- Unique constraint
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_gloves` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`weapon_defindex` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`) -- Unique constraint
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_agents` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`agent_ct` varchar(64) DEFAULT NULL,
|
||||
`agent_t` varchar(64) DEFAULT NULL,
|
||||
UNIQUE (`steamid`) -- Unique constraint
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_music` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`music_id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`) -- Unique constraint
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_pins` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`) -- Unique constraint
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;"
|
||||
];
|
||||
|
||||
foreach (var query in createTableQueries)
|
||||
try
|
||||
{
|
||||
await connection.ExecuteAsync(query, transaction: transaction);
|
||||
await connection.GetConnection().ExecuteAsync(query);
|
||||
WeaponPaints.Instance.Logger.LogInformation($"[WeaponPaints] Table created successfully");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
WeaponPaints.Instance.Logger.LogError($"[WeaponPaints] Error creating table: {ex.Message}");
|
||||
WeaponPaints.Instance.Logger.LogError($"[WeaponPaints] Query: {query}");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
await transaction.CommitAsync();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
await transaction.RollbackAsync();
|
||||
throw new Exception("[WeaponPaints] Unable to create tables!");
|
||||
}
|
||||
WeaponPaints.Instance.Logger.LogInformation("[WeaponPaints] All database tables created successfully");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
throw new Exception("[WeaponPaints] Unknown MySQL exception! " + ex.Message);
|
||||
WeaponPaints.Instance.Logger.LogError($"[WeaponPaints] Database exception: {ex.Message}");
|
||||
throw new Exception("[WeaponPaints] Unknown database exception! " + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
private static string[] GetCreateTableQueries()
|
||||
{
|
||||
if (Config?.DatabaseType?.ToLower() == "sqlite")
|
||||
{
|
||||
return new string[]
|
||||
{
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_skins (
|
||||
steamid TEXT NOT NULL,
|
||||
weapon_team INTEGER NOT NULL,
|
||||
weapon_defindex INTEGER NOT NULL,
|
||||
weapon_paint_id INTEGER NOT NULL,
|
||||
weapon_wear REAL NOT NULL DEFAULT 0.000001,
|
||||
weapon_seed INTEGER NOT NULL DEFAULT 0,
|
||||
weapon_nametag TEXT DEFAULT NULL,
|
||||
weapon_stattrak INTEGER NOT NULL DEFAULT 0,
|
||||
weapon_stattrak_count INTEGER NOT NULL DEFAULT 0,
|
||||
weapon_sticker_0 TEXT NOT NULL DEFAULT '0;0;0;0;0;0;0',
|
||||
weapon_sticker_1 TEXT NOT NULL DEFAULT '0;0;0;0;0;0;0',
|
||||
weapon_sticker_2 TEXT NOT NULL DEFAULT '0;0;0;0;0;0;0',
|
||||
weapon_sticker_3 TEXT NOT NULL DEFAULT '0;0;0;0;0;0;0',
|
||||
weapon_sticker_4 TEXT NOT NULL DEFAULT '0;0;0;0;0;0;0',
|
||||
weapon_keychain TEXT NOT NULL DEFAULT '0;0;0;0;0',
|
||||
UNIQUE (steamid, weapon_team, weapon_defindex)
|
||||
)",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_knife (
|
||||
steamid TEXT NOT NULL,
|
||||
weapon_team INTEGER NOT NULL,
|
||||
knife TEXT NOT NULL,
|
||||
UNIQUE (steamid, weapon_team)
|
||||
)",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_gloves (
|
||||
steamid TEXT NOT NULL,
|
||||
weapon_team INTEGER NOT NULL,
|
||||
weapon_defindex INTEGER NOT NULL,
|
||||
UNIQUE (steamid, weapon_team)
|
||||
)",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_agents (
|
||||
steamid TEXT NOT NULL,
|
||||
agent_ct TEXT DEFAULT NULL,
|
||||
agent_t TEXT DEFAULT NULL,
|
||||
UNIQUE (steamid)
|
||||
)",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_music (
|
||||
steamid TEXT NOT NULL,
|
||||
weapon_team INTEGER NOT NULL,
|
||||
music_id INTEGER NOT NULL,
|
||||
UNIQUE (steamid, weapon_team)
|
||||
)",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS wp_player_pins (
|
||||
steamid TEXT NOT NULL,
|
||||
weapon_team INTEGER NOT NULL,
|
||||
id INTEGER NOT NULL,
|
||||
UNIQUE (steamid, weapon_team)
|
||||
)"
|
||||
};
|
||||
}
|
||||
else // MySQL
|
||||
{
|
||||
return new string[]
|
||||
{
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_skins` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`weapon_defindex` int(6) NOT NULL,
|
||||
`weapon_paint_id` int(6) NOT NULL,
|
||||
`weapon_wear` float NOT NULL DEFAULT 0.000001,
|
||||
`weapon_seed` int(16) NOT NULL DEFAULT 0,
|
||||
`weapon_nametag` VARCHAR(128) DEFAULT NULL,
|
||||
`weapon_stattrak` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`weapon_stattrak_count` int(10) NOT NULL DEFAULT 0,
|
||||
`weapon_sticker_0` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_1` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_2` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_3` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_sticker_4` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
`weapon_keychain` VARCHAR(128) NOT NULL DEFAULT '0;0;0;0;0' COMMENT 'id;x;y;z;seed',
|
||||
UNIQUE (`steamid`, `weapon_team`, `weapon_defindex`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_knife` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`knife` varchar(64) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_gloves` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`weapon_defindex` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_agents` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`agent_ct` varchar(64) DEFAULT NULL,
|
||||
`agent_t` varchar(64) DEFAULT NULL,
|
||||
UNIQUE (`steamid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_music` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`music_id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;",
|
||||
|
||||
@"
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_pins` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`weapon_team` int(1) NOT NULL,
|
||||
`id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`, `weapon_team`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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)
|
||||
@@ -378,9 +378,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 +400,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 +450,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 +594,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.2a";
|
||||
|
||||
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;
|
||||
|
||||
@@ -77,9 +80,28 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
Config = config;
|
||||
_config = config;
|
||||
|
||||
if (config.DatabaseHost.Length < 1 || config.DatabaseName.Length < 1 || config.DatabaseUser.Length < 1)
|
||||
// Validar configurações de banco de dados
|
||||
if (config.DatabaseType.ToLower() == "mysql")
|
||||
{
|
||||
Logger.LogError("You need to setup Database credentials in \"configs/plugins/WeaponPaints/WeaponPaints.json\"!");
|
||||
if (config.DatabaseHost.Length < 1 || config.DatabaseName.Length < 1 || config.DatabaseUser.Length < 1)
|
||||
{
|
||||
Logger.LogError("You need to setup MySQL Database credentials in \"configs/plugins/WeaponPaints/WeaponPaints.json\"!");
|
||||
Unload(false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else if (config.DatabaseType.ToLower() == "sqlite")
|
||||
{
|
||||
if (string.IsNullOrEmpty(config.DatabasePath))
|
||||
{
|
||||
Logger.LogError("You need to setup SQLite Database path in \"configs/plugins/WeaponPaints/WeaponPaints.json\"!");
|
||||
Unload(false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Logger.LogError("Invalid DatabaseType. Use 'mysql' or 'sqlite'.");
|
||||
Unload(false);
|
||||
return;
|
||||
}
|
||||
@@ -91,23 +113,43 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
return;
|
||||
}
|
||||
|
||||
var builder = new MySqlConnectionStringBuilder
|
||||
// Criar conexão baseada no tipo de banco
|
||||
IDatabaseConnection connection;
|
||||
if (config.DatabaseType.ToLower() == "mysql")
|
||||
{
|
||||
Server = config.DatabaseHost,
|
||||
UserID = config.DatabaseUser,
|
||||
Password = config.DatabasePassword,
|
||||
Database = config.DatabaseName,
|
||||
Port = (uint)config.DatabasePort,
|
||||
Pooling = true,
|
||||
MaximumPoolSize = 640,
|
||||
};
|
||||
var builder = new MySqlConnectionStringBuilder
|
||||
{
|
||||
Server = config.DatabaseHost,
|
||||
UserID = config.DatabaseUser,
|
||||
Password = config.DatabasePassword,
|
||||
Database = config.DatabaseName,
|
||||
Port = (uint)config.DatabasePort,
|
||||
Pooling = true,
|
||||
MaximumPoolSize = 640,
|
||||
};
|
||||
connection = new MySQLConnection(builder.ConnectionString, Logger);
|
||||
}
|
||||
else // SQLite
|
||||
{
|
||||
// Garantir que o diretório existe
|
||||
var dbPath = Path.GetFullPath(config.DatabasePath);
|
||||
var dbDirectory = Path.GetDirectoryName(dbPath);
|
||||
if (!string.IsNullOrEmpty(dbDirectory) && !Directory.Exists(dbDirectory))
|
||||
{
|
||||
Directory.CreateDirectory(dbDirectory);
|
||||
}
|
||||
|
||||
var connectionString = $"Data Source={dbPath}";
|
||||
Logger.LogInformation($"[WeaponPaints] SQLite database path: {dbPath}");
|
||||
|
||||
connection = new SQLiteConnection(connectionString, Logger);
|
||||
}
|
||||
|
||||
Database = new Database(builder.ConnectionString);
|
||||
|
||||
_ = Utility.CheckDatabaseTables();
|
||||
_localizer = Localizer;
|
||||
Database = new Database(connection);
|
||||
|
||||
Utility.Config = config;
|
||||
Task.Run(async () => await Utility.CheckDatabaseTables());
|
||||
_localizer = Localizer;
|
||||
Utility.ShowAd(ModuleVersion);
|
||||
Task.Run(async () => await Utility.CheckVersion(ModuleVersion, Logger));
|
||||
}
|
||||
@@ -140,4 +182,4 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,10 +9,11 @@
|
||||
</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.342" />
|
||||
<PackageReference Include="Dapper" Version="2.1.66" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.4.0" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
37
WeaponPaints.json
Normal file
37
WeaponPaints.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"ConfigVersion": 10,
|
||||
"SkinsLanguage": "pt-BR",
|
||||
"DatabaseType": "sqlite",
|
||||
"DatabasePath": "weaponpaints.db",
|
||||
"DatabaseHost": "",
|
||||
"DatabasePort": 3306,
|
||||
"DatabaseUser": "",
|
||||
"DatabasePassword": "",
|
||||
"DatabaseName": "",
|
||||
"CmdRefreshCooldownSeconds": 3,
|
||||
"Website": "example.com/skins",
|
||||
"Additional": {
|
||||
"KnifeEnabled": true,
|
||||
"GloveEnabled": true,
|
||||
"MusicEnabled": true,
|
||||
"AgentEnabled": true,
|
||||
"SkinEnabled": true,
|
||||
"PinsEnabled": true,
|
||||
"CommandWpEnabled": true,
|
||||
"CommandKillEnabled": true,
|
||||
"CommandKnife": ["knife"],
|
||||
"CommandMusic": ["music"],
|
||||
"CommandPin": ["pin", "pins", "coin", "coins"],
|
||||
"CommandGlove": ["gloves"],
|
||||
"CommandAgent": ["agents"],
|
||||
"CommandStattrak": ["stattrak", "st"],
|
||||
"CommandSkin": ["ws"],
|
||||
"CommandSkinSelection": ["skins"],
|
||||
"CommandRefresh": ["wp"],
|
||||
"CommandKill": ["kill"],
|
||||
"GiveRandomKnife": false,
|
||||
"GiveRandomSkin": false,
|
||||
"ShowSkinImage": true
|
||||
},
|
||||
"MenuType": "selectable"
|
||||
}
|
||||
@@ -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>
|
||||
@@ -1,8 +1,8 @@
|
||||
using Dapper;
|
||||
using MySqlConnector;
|
||||
using System.Collections.Concurrent;
|
||||
using CounterStrikeSharp.API.Modules.Utils;
|
||||
using System.Globalization;
|
||||
using System.Data;
|
||||
|
||||
namespace WeaponPaints;
|
||||
|
||||
@@ -24,17 +24,17 @@ internal class WeaponSynchronization
|
||||
await using var connection = await _database.GetConnectionAsync();
|
||||
|
||||
if (_config.Additional.KnifeEnabled)
|
||||
GetKnifeFromDatabase(player, connection);
|
||||
GetKnifeFromDatabase(player, connection.GetConnection());
|
||||
if (_config.Additional.GloveEnabled)
|
||||
GetGloveFromDatabase(player, connection);
|
||||
GetGloveFromDatabase(player, connection.GetConnection());
|
||||
if (_config.Additional.AgentEnabled)
|
||||
GetAgentFromDatabase(player, connection);
|
||||
GetAgentFromDatabase(player, connection.GetConnection());
|
||||
if (_config.Additional.MusicEnabled)
|
||||
GetMusicFromDatabase(player, connection);
|
||||
GetMusicFromDatabase(player, connection.GetConnection());
|
||||
if (_config.Additional.SkinEnabled)
|
||||
GetWeaponPaintsFromDatabase(player, connection);
|
||||
GetWeaponPaintsFromDatabase(player, connection.GetConnection());
|
||||
if (_config.Additional.PinsEnabled)
|
||||
GetPinsFromDatabase(player, connection);
|
||||
GetPinsFromDatabase(player, connection.GetConnection());
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -43,14 +43,16 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetKnifeFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetKnifeFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!_config.Additional.KnifeEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||
return;
|
||||
|
||||
const string query = "SELECT `knife`, `weapon_team` FROM `wp_player_knife` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT knife, weapon_team FROM wp_player_knife WHERE steamid = @steamid ORDER BY weapon_team ASC"
|
||||
: "SELECT `knife`, `weapon_team` FROM `wp_player_knife` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||
|
||||
foreach (var row in rows)
|
||||
@@ -59,14 +61,14 @@ internal class WeaponSynchronization
|
||||
if (string.IsNullOrEmpty(row.knife)) continue;
|
||||
|
||||
// Determine the weapon team based on the query result
|
||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||
CsTeam weaponTeam = Convert.ToInt32(row.weapon_team) switch
|
||||
{
|
||||
2 => CsTeam.Terrorist,
|
||||
3 => CsTeam.CounterTerrorist,
|
||||
_ => CsTeam.None,
|
||||
};
|
||||
|
||||
// Get or create entries for the player’s slot
|
||||
// Get or create entries for the player's slot
|
||||
var playerKnives = WeaponPaints.GPlayersKnife.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, string>());
|
||||
|
||||
if (weaponTeam == CsTeam.None)
|
||||
@@ -88,14 +90,16 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetGloveFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetGloveFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!_config.Additional.GloveEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||
return;
|
||||
|
||||
const string query = "SELECT `weapon_defindex`, `weapon_team` FROM `wp_player_gloves` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT weapon_defindex, weapon_team FROM wp_player_gloves WHERE steamid = @steamid ORDER BY weapon_team ASC"
|
||||
: "SELECT `weapon_defindex`, `weapon_team` FROM `wp_player_gloves` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||
|
||||
foreach (var row in rows)
|
||||
@@ -104,7 +108,7 @@ internal class WeaponSynchronization
|
||||
if (row.weapon_defindex == null) continue;
|
||||
// Determine the weapon team based on the query result
|
||||
var playerGloves = WeaponPaints.GPlayersGlove.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, ushort>());
|
||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||
CsTeam weaponTeam = Convert.ToInt32(row.weapon_team) switch
|
||||
{
|
||||
2 => CsTeam.Terrorist,
|
||||
3 => CsTeam.CounterTerrorist,
|
||||
@@ -116,13 +120,13 @@ internal class WeaponSynchronization
|
||||
if (weaponTeam == CsTeam.None)
|
||||
{
|
||||
// Assign glove ID to both teams if weaponTeam is None
|
||||
playerGloves[CsTeam.Terrorist] = (ushort)row.weapon_defindex;
|
||||
playerGloves[CsTeam.CounterTerrorist] = (ushort)row.weapon_defindex;
|
||||
playerGloves[CsTeam.Terrorist] = Convert.ToUInt16(row.weapon_defindex);
|
||||
playerGloves[CsTeam.CounterTerrorist] = Convert.ToUInt16(row.weapon_defindex);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Assign glove ID to the specific team
|
||||
playerGloves[weaponTeam] = (ushort)row.weapon_defindex;
|
||||
playerGloves[weaponTeam] = Convert.ToUInt16(row.weapon_defindex);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -132,14 +136,16 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetAgentFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetAgentFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!_config.Additional.AgentEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||
return;
|
||||
|
||||
const string query = "SELECT `agent_ct`, `agent_t` FROM `wp_player_agents` WHERE `steamid` = @steamid";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT agent_ct, agent_t FROM wp_player_agents WHERE steamid = @steamid"
|
||||
: "SELECT `agent_ct`, `agent_t` FROM `wp_player_agents` WHERE `steamid` = @steamid";
|
||||
var agentData = connection.QueryFirstOrDefault<(string, string)>(query, new { steamid = player.SteamId });
|
||||
|
||||
if (agentData == default) return;
|
||||
@@ -160,7 +166,7 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetWeaponPaintsFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetWeaponPaintsFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -172,20 +178,22 @@ internal class WeaponSynchronization
|
||||
|
||||
// var weaponInfos = new ConcurrentDictionary<int, WeaponInfo>();
|
||||
|
||||
const string query = "SELECT * FROM `wp_player_skins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT * FROM wp_player_skins WHERE steamid = @steamid ORDER BY weapon_team ASC"
|
||||
: "SELECT * FROM `wp_player_skins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
var playerSkins = connection.Query<dynamic>(query, new { steamid = player.SteamId });
|
||||
|
||||
foreach (var row in playerSkins)
|
||||
{
|
||||
int weaponDefIndex = row.weapon_defindex ?? 0;
|
||||
int weaponPaintId = row.weapon_paint_id ?? 0;
|
||||
float weaponWear = row.weapon_wear ?? 0f;
|
||||
int weaponSeed = row.weapon_seed ?? 0;
|
||||
string weaponNameTag = row.weapon_nametag ?? "";
|
||||
bool weaponStatTrak = row.weapon_stattrak ?? false;
|
||||
int weaponStatTrakCount = row.weapon_stattrak_count ?? 0;
|
||||
int weaponDefIndex = Convert.ToInt32(row.weapon_defindex ?? 0);
|
||||
int weaponPaintId = Convert.ToInt32(row.weapon_paint_id ?? 0);
|
||||
float weaponWear = Convert.ToSingle(row.weapon_wear ?? 0f);
|
||||
int weaponSeed = Convert.ToInt32(row.weapon_seed ?? 0);
|
||||
string weaponNameTag = row.weapon_nametag?.ToString() ?? "";
|
||||
bool weaponStatTrak = Convert.ToBoolean(row.weapon_stattrak ?? false);
|
||||
int weaponStatTrakCount = Convert.ToInt32(row.weapon_stattrak_count ?? 0);
|
||||
|
||||
CsTeam weaponTeam = row.weapon_team switch
|
||||
CsTeam weaponTeam = Convert.ToInt32(row.weapon_team) switch
|
||||
{
|
||||
2 => CsTeam.Terrorist,
|
||||
3 => CsTeam.CounterTerrorist,
|
||||
@@ -295,14 +303,16 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetMusicFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetMusicFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!_config.Additional.MusicEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||
return;
|
||||
|
||||
const string query = "SELECT `music_id`, `weapon_team` FROM `wp_player_music` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT music_id, weapon_team FROM wp_player_music WHERE steamid = @steamid ORDER BY weapon_team ASC"
|
||||
: "SELECT `music_id`, `weapon_team` FROM `wp_player_music` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||
|
||||
foreach (var row in rows)
|
||||
@@ -311,26 +321,26 @@ internal class WeaponSynchronization
|
||||
if (row.music_id == null) continue;
|
||||
|
||||
// Determine the weapon team based on the query result
|
||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||
CsTeam weaponTeam = Convert.ToInt32(row.weapon_team) switch
|
||||
{
|
||||
2 => CsTeam.Terrorist,
|
||||
3 => CsTeam.CounterTerrorist,
|
||||
_ => CsTeam.None,
|
||||
};
|
||||
|
||||
// Get or create entries for the player’s slot
|
||||
// Get or create entries for the player's slot
|
||||
var playerMusic = WeaponPaints.GPlayersMusic.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, ushort>());
|
||||
|
||||
if (weaponTeam == CsTeam.None)
|
||||
{
|
||||
// Assign music ID to both teams if weaponTeam is None
|
||||
playerMusic[CsTeam.Terrorist] = (ushort)row.music_id;
|
||||
playerMusic[CsTeam.CounterTerrorist] = (ushort)row.music_id;
|
||||
playerMusic[CsTeam.Terrorist] = Convert.ToUInt16(row.music_id);
|
||||
playerMusic[CsTeam.CounterTerrorist] = Convert.ToUInt16(row.music_id);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Assign music ID to the specific team
|
||||
playerMusic[weaponTeam] = (ushort)row.music_id;
|
||||
playerMusic[weaponTeam] = Convert.ToUInt16(row.music_id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -340,14 +350,16 @@ internal class WeaponSynchronization
|
||||
}
|
||||
}
|
||||
|
||||
private void GetPinsFromDatabase(PlayerInfo? player, MySqlConnection connection)
|
||||
private void GetPinsFromDatabase(PlayerInfo? player, IDbConnection connection)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (string.IsNullOrEmpty(player?.SteamId))
|
||||
return;
|
||||
|
||||
const string query = "SELECT `id`, `weapon_team` FROM `wp_player_pins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT id, weapon_team FROM wp_player_pins WHERE steamid = @steamid ORDER BY weapon_team ASC"
|
||||
: "SELECT `id`, `weapon_team` FROM `wp_player_pins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||
|
||||
foreach (var row in rows)
|
||||
@@ -356,26 +368,26 @@ internal class WeaponSynchronization
|
||||
if (row.id == null) continue;
|
||||
|
||||
// Determine the weapon team based on the query result
|
||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||
CsTeam weaponTeam = Convert.ToInt32(row.weapon_team) switch
|
||||
{
|
||||
2 => CsTeam.Terrorist,
|
||||
3 => CsTeam.CounterTerrorist,
|
||||
_ => CsTeam.None,
|
||||
};
|
||||
|
||||
// Get or create entries for the player’s slot
|
||||
// Get or create entries for the player's slot
|
||||
var playerPins = WeaponPaints.GPlayersPin.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, ushort>());
|
||||
|
||||
if (weaponTeam == CsTeam.None)
|
||||
{
|
||||
// Assign pin ID to both teams if weaponTeam is None
|
||||
playerPins[CsTeam.Terrorist] = (ushort)row.id;
|
||||
playerPins[CsTeam.CounterTerrorist] = (ushort)row.id;
|
||||
playerPins[CsTeam.Terrorist] = Convert.ToUInt16(row.id);
|
||||
playerPins[CsTeam.CounterTerrorist] = Convert.ToUInt16(row.id);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Assign pin ID to the specific team
|
||||
playerPins[weaponTeam] = (ushort)row.id;
|
||||
playerPins[weaponTeam] = Convert.ToUInt16(row.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -389,7 +401,9 @@ internal class WeaponSynchronization
|
||||
{
|
||||
if (!_config.Additional.KnifeEnabled || string.IsNullOrEmpty(player.SteamId) || string.IsNullOrEmpty(knife) || teams.Length == 0) return;
|
||||
|
||||
const string query = "INSERT INTO `wp_player_knife` (`steamid`, `weapon_team`, `knife`) VALUES(@steamid, @team, @newKnife) ON DUPLICATE KEY UPDATE `knife` = @newKnife";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT OR REPLACE INTO wp_player_knife (steamid, weapon_team, knife) VALUES(@steamid, @team, @newKnife)"
|
||||
: "INSERT INTO `wp_player_knife` (`steamid`, `weapon_team`, `knife`) VALUES(@steamid, @team, @newKnife) ON DUPLICATE KEY UPDATE `knife` = @newKnife";
|
||||
|
||||
try
|
||||
{
|
||||
@@ -398,7 +412,7 @@ internal class WeaponSynchronization
|
||||
// Loop through each team and insert/update accordingly
|
||||
foreach (var team in teams)
|
||||
{
|
||||
await connection.ExecuteAsync(query, new { steamid = player.SteamId, team, newKnife = knife });
|
||||
await connection.GetConnection().ExecuteAsync(query, new { steamid = player.SteamId, team, newKnife = knife });
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
@@ -413,8 +427,9 @@ internal class WeaponSynchronization
|
||||
if (!_config.Additional.GloveEnabled || string.IsNullOrEmpty(player.SteamId) || teams.Length == 0)
|
||||
return;
|
||||
|
||||
const string query = @"
|
||||
INSERT INTO `wp_player_gloves` (`steamid`, `weapon_team`, `weapon_defindex`)
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT OR REPLACE INTO wp_player_gloves (steamid, weapon_team, weapon_defindex) VALUES(@steamid, @team, @gloveDefIndex)"
|
||||
: @"INSERT INTO `wp_player_gloves` (`steamid`, `weapon_team`, `weapon_defindex`)
|
||||
VALUES(@steamid, @team, @gloveDefIndex)
|
||||
ON DUPLICATE KEY UPDATE `weapon_defindex` = @gloveDefIndex";
|
||||
|
||||
@@ -427,7 +442,7 @@ internal class WeaponSynchronization
|
||||
foreach (var team in teams)
|
||||
{
|
||||
// Execute the SQL command for each team
|
||||
await connection.ExecuteAsync(query, new {
|
||||
await connection.GetConnection().ExecuteAsync(query, new {
|
||||
steamid = player.SteamId,
|
||||
team = (int)team, // Cast the CsTeam enum to int for insertion
|
||||
gloveDefIndex
|
||||
@@ -445,18 +460,14 @@ internal class WeaponSynchronization
|
||||
{
|
||||
if (!_config.Additional.AgentEnabled || string.IsNullOrEmpty(player.SteamId)) return;
|
||||
|
||||
const string query = """
|
||||
INSERT INTO `wp_player_agents` (`steamid`, `agent_ct`, `agent_t`)
|
||||
VALUES(@steamid, @agent_ct, @agent_t)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
`agent_ct` = @agent_ct,
|
||||
`agent_t` = @agent_t
|
||||
""";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT OR REPLACE INTO wp_player_agents (steamid, agent_ct, agent_t) VALUES(@steamid, @agent_ct, @agent_t)"
|
||||
: "INSERT INTO `wp_player_agents` (`steamid`, `agent_ct`, `agent_t`) VALUES(@steamid, @agent_ct, @agent_t) ON DUPLICATE KEY UPDATE `agent_ct` = @agent_ct, `agent_t` = @agent_t";
|
||||
try
|
||||
{
|
||||
await using var connection = await _database.GetConnectionAsync();
|
||||
|
||||
await connection.ExecuteAsync(query, new { steamid = player.SteamId, agent_ct = WeaponPaints.GPlayersAgent[player.Slot].CT, agent_t = WeaponPaints.GPlayersAgent[player.Slot].T });
|
||||
await connection.GetConnection().ExecuteAsync(query, new { steamid = player.SteamId, agent_ct = WeaponPaints.GPlayersAgent[player.Slot].CT, agent_t = WeaponPaints.GPlayersAgent[player.Slot].T });
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
@@ -483,9 +494,11 @@ internal class WeaponSynchronization
|
||||
var seed = weaponInfo.Seed;
|
||||
|
||||
// Prepare the queries to check and update/insert weapon skin data
|
||||
const string queryCheckExistence = "SELECT COUNT(*) FROM `wp_player_skins` WHERE `steamid` = @steamid AND `weapon_defindex` = @weaponDefIndex AND `weapon_team` = @weaponTeam";
|
||||
string queryCheckExistence = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "SELECT COUNT(*) FROM wp_player_skins WHERE steamid = @steamid AND weapon_defindex = @weaponDefIndex AND weapon_team = @weaponTeam"
|
||||
: "SELECT COUNT(*) FROM `wp_player_skins` WHERE `steamid` = @steamid AND `weapon_defindex` = @weaponDefIndex AND `weapon_team` = @weaponTeam";
|
||||
|
||||
var existingRecordCount = await connection.ExecuteScalarAsync<int>(
|
||||
var existingRecordCount = await connection.GetConnection().ExecuteScalarAsync<int>(
|
||||
queryCheckExistence,
|
||||
new { steamid = player.SteamId, weaponDefIndex, weaponTeam = teamId }
|
||||
);
|
||||
@@ -496,19 +509,21 @@ internal class WeaponSynchronization
|
||||
if (existingRecordCount > 0)
|
||||
{
|
||||
// Update existing record
|
||||
query = "UPDATE `wp_player_skins` SET `weapon_paint_id` = @paintId, `weapon_wear` = @wear, `weapon_seed` = @seed " +
|
||||
"WHERE `steamid` = @steamid AND `weapon_defindex` = @weaponDefIndex AND `weapon_team` = @weaponTeam";
|
||||
query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "UPDATE wp_player_skins SET weapon_paint_id = @paintId, weapon_wear = @wear, weapon_seed = @seed WHERE steamid = @steamid AND weapon_defindex = @weaponDefIndex AND weapon_team = @weaponTeam"
|
||||
: "UPDATE `wp_player_skins` SET `weapon_paint_id` = @paintId, `weapon_wear` = @wear, `weapon_seed` = @seed WHERE `steamid` = @steamid AND `weapon_defindex` = @weaponDefIndex AND `weapon_team` = @weaponTeam";
|
||||
parameters = new { steamid = player.SteamId, weaponDefIndex, weaponTeam = (int)teamId, paintId, wear, seed };
|
||||
}
|
||||
else
|
||||
{
|
||||
// Insert new record
|
||||
query = "INSERT INTO `wp_player_skins` (`steamid`, `weapon_defindex`, `weapon_team`, `weapon_paint_id`, `weapon_wear`, `weapon_seed`) " +
|
||||
"VALUES (@steamid, @weaponDefIndex, @weaponTeam, @paintId, @wear, @seed)";
|
||||
query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT INTO wp_player_skins (steamid, weapon_defindex, weapon_team, weapon_paint_id, weapon_wear, weapon_seed) VALUES (@steamid, @weaponDefIndex, @weaponTeam, @paintId, @wear, @seed)"
|
||||
: "INSERT INTO `wp_player_skins` (`steamid`, `weapon_defindex`, `weapon_team`, `weapon_paint_id`, `weapon_wear`, `weapon_seed`) VALUES (@steamid, @weaponDefIndex, @weaponTeam, @paintId, @wear, @seed)";
|
||||
parameters = new { steamid = player.SteamId, weaponDefIndex, weaponTeam = (int)teamId, paintId, wear, seed };
|
||||
}
|
||||
|
||||
await connection.ExecuteAsync(query, parameters);
|
||||
await connection.GetConnection().ExecuteAsync(query, parameters);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -522,7 +537,9 @@ internal class WeaponSynchronization
|
||||
{
|
||||
if (!_config.Additional.MusicEnabled || string.IsNullOrEmpty(player.SteamId)) return;
|
||||
|
||||
const string query = "INSERT INTO `wp_player_music` (`steamid`, `weapon_team`, `music_id`) VALUES(@steamid, @team, @newMusic) ON DUPLICATE KEY UPDATE `music_id` = @newMusic";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT OR REPLACE INTO wp_player_music (steamid, weapon_team, music_id) VALUES(@steamid, @team, @newMusic)"
|
||||
: "INSERT INTO `wp_player_music` (`steamid`, `weapon_team`, `music_id`) VALUES(@steamid, @team, @newMusic) ON DUPLICATE KEY UPDATE `music_id` = @newMusic";
|
||||
|
||||
try
|
||||
{
|
||||
@@ -531,7 +548,7 @@ internal class WeaponSynchronization
|
||||
// Loop through each team and insert/update accordingly
|
||||
foreach (var team in teams)
|
||||
{
|
||||
await connection.ExecuteAsync(query, new { steamid = player.SteamId, team, newMusic = music });
|
||||
await connection.GetConnection().ExecuteAsync(query, new { steamid = player.SteamId, team, newMusic = music });
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
@@ -544,7 +561,9 @@ internal class WeaponSynchronization
|
||||
{
|
||||
if (!_config.Additional.PinsEnabled || string.IsNullOrEmpty(player.SteamId)) return;
|
||||
|
||||
const string query = "INSERT INTO `wp_player_pins` (`steamid`, `weapon_team`, `id`) VALUES(@steamid, @team, @newPin) ON DUPLICATE KEY UPDATE `id` = @newPin";
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "INSERT OR REPLACE INTO wp_player_pins (steamid, weapon_team, id) VALUES(@steamid, @team, @newPin)"
|
||||
: "INSERT INTO `wp_player_pins` (`steamid`, `weapon_team`, `id`) VALUES(@steamid, @team, @newPin) ON DUPLICATE KEY UPDATE `id` = @newPin";
|
||||
|
||||
try
|
||||
{
|
||||
@@ -553,7 +572,7 @@ internal class WeaponSynchronization
|
||||
// Loop through each team and insert/update accordingly
|
||||
foreach (var team in teams)
|
||||
{
|
||||
await connection.ExecuteAsync(query, new { steamid = player.SteamId, team, newPin = pin });
|
||||
await connection.GetConnection().ExecuteAsync(query, new { steamid = player.SteamId, team, newPin = pin });
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
@@ -571,7 +590,7 @@ internal class WeaponSynchronization
|
||||
try
|
||||
{
|
||||
await using var connection = await _database.GetConnectionAsync();
|
||||
await using var transaction = await connection.BeginTransactionAsync();
|
||||
using var transaction = await connection.BeginTransactionAsync();
|
||||
|
||||
// Check if player's slot exists in GPlayerWeaponsInfo
|
||||
if (!WeaponPaints.GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamWeaponsInfo))
|
||||
@@ -599,8 +618,9 @@ internal class WeaponSynchronization
|
||||
// Sync StatTrak values for the current team
|
||||
foreach (var (defindex, (statTrak, statTrakCount)) in statTrakWeapons)
|
||||
{
|
||||
const string query = @"
|
||||
UPDATE `wp_player_skins`
|
||||
string query = Utility.Config?.DatabaseType?.ToLower() == "sqlite"
|
||||
? "UPDATE wp_player_skins SET weapon_stattrak = @StatTrak, weapon_stattrak_count = @StatTrakCount WHERE steamid = @steamid AND weapon_defindex = @weaponDefIndex AND weapon_team = @weaponTeam"
|
||||
: @"UPDATE `wp_player_skins`
|
||||
SET `weapon_stattrak` = @StatTrak,
|
||||
`weapon_stattrak_count` = @StatTrakCount
|
||||
WHERE `steamid` = @steamid
|
||||
@@ -616,11 +636,11 @@ internal class WeaponSynchronization
|
||||
weaponTeam
|
||||
};
|
||||
|
||||
await connection.ExecuteAsync(query, parameters, transaction);
|
||||
await connection.GetConnection().ExecuteAsync(query, parameters, transaction);
|
||||
}
|
||||
}
|
||||
|
||||
await transaction.CommitAsync();
|
||||
await connection.CommitTransactionAsync(transaction);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
||||
@@ -297,7 +297,7 @@
|
||||
"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"
|
||||
"agent_name": "Michael Syfers | FBI-sniper"
|
||||
},
|
||||
{
|
||||
"team": 3,
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Медал за втория сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 сребърна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 златна монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 диамантена монета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Champion at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quarterfinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета за картата Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета за картата Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета за картата Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета за картата Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета за картата Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медал за третия сезон в „Премиерен“",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Автентичен Значка за Dust II",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medaile druhé sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Stříbrná mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Zlatá mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantová mince šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vítěz šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Čtvrtfinalista šampionátu BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Mince mapy Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Mince mapy Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Mince mapy Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Mince mapy Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Mince mapy Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medaile třetí sezóny módu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznak Dust II (Genuine)",
|
||||
|
||||
@@ -531,7 +531,7 @@
|
||||
},
|
||||
{
|
||||
"id": "983",
|
||||
"name": "Mester ved PGL Antwerp 2022",
|
||||
"name": "Vinder af PGL Antwerp 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-983.png"
|
||||
},
|
||||
{
|
||||
@@ -1621,7 +1621,7 @@
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Mester ved PGL Copenhagen 2024",
|
||||
"name": "Vinder af PGL Copenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4933.png"
|
||||
},
|
||||
{
|
||||
@@ -1716,7 +1716,7 @@
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Mester ved Perfect World Shanghai 2024",
|
||||
"name": "Vinder af Perfect World Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4974.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medalje for anden sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Sølvmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Guldmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmønt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vinder af BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartfinalist ved Blast.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Banemønt: Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Banemønt: Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Banemønt: Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Banemønt: Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Banemønt: Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalje for tredje sæson af Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II-knappenål (Ægte)",
|
||||
|
||||
@@ -61,17 +61,17 @@
|
||||
},
|
||||
{
|
||||
"id": "887",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Bronzetrophäe",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-887.png"
|
||||
},
|
||||
{
|
||||
"id": "888",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Silbertrophäe",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-888.png"
|
||||
},
|
||||
{
|
||||
"id": "889",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Goldtrophäe",
|
||||
"name": "ESL One Köln 2014 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-889.png"
|
||||
},
|
||||
{
|
||||
@@ -96,17 +96,17 @@
|
||||
},
|
||||
{
|
||||
"id": "894",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Bronzetrophäe",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-894.png"
|
||||
},
|
||||
{
|
||||
"id": "895",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Silbertrophäe",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-895.png"
|
||||
},
|
||||
{
|
||||
"id": "896",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Goldtrophäe",
|
||||
"name": "DreamHack Winter 2014 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-896.png"
|
||||
},
|
||||
{
|
||||
@@ -131,17 +131,17 @@
|
||||
},
|
||||
{
|
||||
"id": "901",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Bronzetrophäe",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-901.png"
|
||||
},
|
||||
{
|
||||
"id": "902",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Silbertrophäe",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-902.png"
|
||||
},
|
||||
{
|
||||
"id": "903",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Goldtrophäe",
|
||||
"name": "ESL One Kattowitz 2015 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-903.png"
|
||||
},
|
||||
{
|
||||
@@ -166,32 +166,32 @@
|
||||
},
|
||||
{
|
||||
"id": "908",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Bronzetrophäe",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-908.png"
|
||||
},
|
||||
{
|
||||
"id": "909",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Silbertrophäe",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-909.png"
|
||||
},
|
||||
{
|
||||
"id": "910",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Goldtrophäe",
|
||||
"name": "ESL One Köln 2015 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-910.png"
|
||||
},
|
||||
{
|
||||
"id": "911",
|
||||
"name": "Klausenburg 2015 Pick’Em – Bronzetrophäe",
|
||||
"name": "Klausenburg 2015 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-911.png"
|
||||
},
|
||||
{
|
||||
"id": "912",
|
||||
"name": "Klausenburg 2015 Pick’Em – Silbertrophäe",
|
||||
"name": "Klausenburg 2015 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-912.png"
|
||||
},
|
||||
{
|
||||
"id": "913",
|
||||
"name": "Klausenburg 2015 Pick’Em – Goldtrophäe",
|
||||
"name": "Klausenburg 2015 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-913.png"
|
||||
},
|
||||
{
|
||||
@@ -231,17 +231,17 @@
|
||||
},
|
||||
{
|
||||
"id": "921",
|
||||
"name": "Columbus 2016 Pick’Em – Bronzetrophäe",
|
||||
"name": "Columbus 2016 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-921.png"
|
||||
},
|
||||
{
|
||||
"id": "922",
|
||||
"name": "Columbus 2016 Pick’Em – Silbertrophäe",
|
||||
"name": "Columbus 2016 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-922.png"
|
||||
},
|
||||
{
|
||||
"id": "923",
|
||||
"name": "Columbus 2016 Pick’Em – Goldtrophäe",
|
||||
"name": "Columbus 2016 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-923.png"
|
||||
},
|
||||
{
|
||||
@@ -301,17 +301,17 @@
|
||||
},
|
||||
{
|
||||
"id": "935",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Bronzetrophäe",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-935.png"
|
||||
},
|
||||
{
|
||||
"id": "936",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Silbertrophäe",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-936.png"
|
||||
},
|
||||
{
|
||||
"id": "937",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Goldtrophäe",
|
||||
"name": "ESL One Köln 2016 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-937.png"
|
||||
},
|
||||
{
|
||||
@@ -351,17 +351,17 @@
|
||||
},
|
||||
{
|
||||
"id": "945",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Bronzetrophäe",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-945.png"
|
||||
},
|
||||
{
|
||||
"id": "946",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Silbertrophäe",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-946.png"
|
||||
},
|
||||
{
|
||||
"id": "947",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Goldtrophäe",
|
||||
"name": "ELEAGUE Atlanta 2017 Pick’Em Challenge – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-947.png"
|
||||
},
|
||||
{
|
||||
@@ -386,17 +386,17 @@
|
||||
},
|
||||
{
|
||||
"id": "952",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Bronzetrophäe",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-952.png"
|
||||
},
|
||||
{
|
||||
"id": "953",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Silbertrophäe",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-953.png"
|
||||
},
|
||||
{
|
||||
"id": "954",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Goldtrophäe",
|
||||
"name": "PGL Krakau 2017 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-954.png"
|
||||
},
|
||||
{
|
||||
@@ -421,17 +421,17 @@
|
||||
},
|
||||
{
|
||||
"id": "959",
|
||||
"name": "Boston 2018 Pick’Em – Bronzetrophäe",
|
||||
"name": "Boston 2018 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-959.png"
|
||||
},
|
||||
{
|
||||
"id": "960",
|
||||
"name": "Boston 2018 Pick’Em – Silbertrophäe",
|
||||
"name": "Boston 2018 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-960.png"
|
||||
},
|
||||
{
|
||||
"id": "961",
|
||||
"name": "Boston 2018 Pick’Em – Goldtrophäe",
|
||||
"name": "Boston 2018 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-961.png"
|
||||
},
|
||||
{
|
||||
@@ -456,17 +456,17 @@
|
||||
},
|
||||
{
|
||||
"id": "966",
|
||||
"name": "London 2018 Pick’Em – Bronzetrophäe",
|
||||
"name": "London 2018 Pick’Em – Bronzetrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-966.png"
|
||||
},
|
||||
{
|
||||
"id": "967",
|
||||
"name": "London 2018 Pick’Em – Silbertrophäe",
|
||||
"name": "London 2018 Pick’Em – Silbertrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-967.png"
|
||||
},
|
||||
{
|
||||
"id": "968",
|
||||
"name": "London 2018 Pick’Em – Goldtrophäe",
|
||||
"name": "London 2018 Pick’Em – Goldtrophäe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-968.png"
|
||||
},
|
||||
{
|
||||
@@ -1236,42 +1236,42 @@
|
||||
},
|
||||
{
|
||||
"id": "4555",
|
||||
"name": "Münze – Kattowitz 2019",
|
||||
"name": "Münze – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4555.png"
|
||||
},
|
||||
{
|
||||
"id": "4556",
|
||||
"name": "Silbermünze – Kattowitz 2019",
|
||||
"name": "Silbermünze – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4556.png"
|
||||
},
|
||||
{
|
||||
"id": "4557",
|
||||
"name": "Goldmünze – Kattowitz 2019",
|
||||
"name": "Goldmünze – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4557.png"
|
||||
},
|
||||
{
|
||||
"id": "4558",
|
||||
"name": "Diamantmünze – Kattowitz 2019",
|
||||
"name": "Diamantmünze – Kattowitz 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4558.png"
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Münze – Berlin 2019",
|
||||
"name": "Münze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4623.png"
|
||||
},
|
||||
{
|
||||
"id": "4624",
|
||||
"name": "Silbermünze – Berlin 2019",
|
||||
"name": "Silbermünze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4624.png"
|
||||
},
|
||||
{
|
||||
"id": "4625",
|
||||
"name": "Goldmünze – Berlin 2019",
|
||||
"name": "Goldmünze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4625.png"
|
||||
},
|
||||
{
|
||||
"id": "4626",
|
||||
"name": "Diamantmünze – Berlin 2019",
|
||||
"name": "Diamantmünze – Berlin 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
@@ -1431,22 +1431,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4797",
|
||||
"name": "Münze – Stockholm 2021",
|
||||
"name": "Münze – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4797.png"
|
||||
},
|
||||
{
|
||||
"id": "4798",
|
||||
"name": "Silbermünze – Stockholm 2021",
|
||||
"name": "Silbermünze – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4798.png"
|
||||
},
|
||||
{
|
||||
"id": "4799",
|
||||
"name": "Goldmünze – Stockholm 2021",
|
||||
"name": "Goldmünze – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4799.png"
|
||||
},
|
||||
{
|
||||
"id": "4800",
|
||||
"name": "Diamantmünze – Stockholm 2021",
|
||||
"name": "Diamantmünze – Stockholm 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4800.png"
|
||||
},
|
||||
{
|
||||
@@ -1481,42 +1481,42 @@
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Münze – Antwerpen 2022",
|
||||
"name": "Münze – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4826.png"
|
||||
},
|
||||
{
|
||||
"id": "4827",
|
||||
"name": "Silbermünze – Antwerpen 2022",
|
||||
"name": "Silbermünze – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4827.png"
|
||||
},
|
||||
{
|
||||
"id": "4828",
|
||||
"name": "Goldmünze – Antwerpen 2022",
|
||||
"name": "Goldmünze – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4828.png"
|
||||
},
|
||||
{
|
||||
"id": "4829",
|
||||
"name": "Diamantmünze – Antwerpen 2022",
|
||||
"name": "Diamantmünze – Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
"id": "4851",
|
||||
"name": "Münze – Rio 2022",
|
||||
"name": "Münze – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4851.png"
|
||||
},
|
||||
{
|
||||
"id": "4852",
|
||||
"name": "Silbermünze – Rio 2022",
|
||||
"name": "Silbermünze – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4852.png"
|
||||
},
|
||||
{
|
||||
"id": "4853",
|
||||
"name": "Goldmünze – Rio 2022",
|
||||
"name": "Goldmünze – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4853.png"
|
||||
},
|
||||
{
|
||||
"id": "4854",
|
||||
"name": "Diamantmünze – Rio 2022",
|
||||
"name": "Diamantmünze – Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4854.png"
|
||||
},
|
||||
{
|
||||
@@ -1551,22 +1551,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Münze – Paris 2023",
|
||||
"name": "Münze – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4884.png"
|
||||
},
|
||||
{
|
||||
"id": "4885",
|
||||
"name": "Silbermünze – Paris 2023",
|
||||
"name": "Silbermünze – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4885.png"
|
||||
},
|
||||
{
|
||||
"id": "4886",
|
||||
"name": "Goldmünze – Paris 2023",
|
||||
"name": "Goldmünze – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4886.png"
|
||||
},
|
||||
{
|
||||
"id": "4887",
|
||||
"name": "Diamantmünze – Paris 2023",
|
||||
"name": "Diamantmünze – Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
@@ -1601,22 +1601,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Münze – Kopenhagen 2024",
|
||||
"name": "Münze – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4917.png"
|
||||
},
|
||||
{
|
||||
"id": "4918",
|
||||
"name": "Silbermünze – Kopenhagen 2024",
|
||||
"name": "Silbermünze – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4918.png"
|
||||
},
|
||||
{
|
||||
"id": "4919",
|
||||
"name": "Goldmünze – Kopenhagen 2024",
|
||||
"name": "Goldmünze – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4919.png"
|
||||
},
|
||||
{
|
||||
"id": "4920",
|
||||
"name": "Diamantmünze – Kopenhagen 2024",
|
||||
"name": "Diamantmünze – Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
@@ -1696,22 +1696,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4958",
|
||||
"name": "Münze – Shanghai 2024",
|
||||
"name": "Münze – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4958.png"
|
||||
},
|
||||
{
|
||||
"id": "4959",
|
||||
"name": "Silbermünze – Shanghai 2024",
|
||||
"name": "Silbermünze – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4959.png"
|
||||
},
|
||||
{
|
||||
"id": "4960",
|
||||
"name": "Goldmünze – Shanghai 2024",
|
||||
"name": "Goldmünze – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4960.png"
|
||||
},
|
||||
{
|
||||
"id": "4961",
|
||||
"name": "Diamantmünze – Shanghai 2024",
|
||||
"name": "Diamantmünze – Shanghai 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4961.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Abzeichen der 2. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Münze – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Silbermünze – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Goldmünze – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmünze – Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Meister der BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist der BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Halbfinalist der BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Viertelfinalist der BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Münze der Karte Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Münze der Karte Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Münze der Karte Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Münze der Karte Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Münze der Karte Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Abzeichen der 3. Premium-Saison",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Anstecknadel: Dust II (Echt)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Μετάλλιο Premier – Σεζόν Δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Ασημένιο Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Χρυσό Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Διαμαντένιο Νόμισμα Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Πρωταθλητής στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Φιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Ημιφιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Προημιφιναλίστ στο BLAST.tv Όστιν 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Νόμισμα χάρτη Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Νόμισμα χάρτη Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Νόμισμα χάρτη Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Νόμισμα χάρτη Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Νόμισμα χάρτη Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Μετάλλιο Premier – Σεζόν Τρία",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Καρφίτσα Dust II",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Premier Season Two Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Silver Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Gold Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Diamond Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Champion at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quarterfinalist at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Map Coin",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premier Season Three Medal",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Genuine Dust II Pin",
|
||||
|
||||
@@ -366,22 +366,22 @@
|
||||
},
|
||||
{
|
||||
"id": "948",
|
||||
"name": "Campeón del PGL Cracovia 2017",
|
||||
"name": "Campeón del PGL de Cracovia 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-948.png"
|
||||
},
|
||||
{
|
||||
"id": "949",
|
||||
"name": "Finalista del PGL Cracovia 2017",
|
||||
"name": "Finalista del PGL de Cracovia 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-949.png"
|
||||
},
|
||||
{
|
||||
"id": "950",
|
||||
"name": "Semifinalista del PGL Cracovia 2017",
|
||||
"name": "Semifinalista del PGL de Cracovia 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-950.png"
|
||||
},
|
||||
{
|
||||
"id": "951",
|
||||
"name": "Cuartofinalista del PGL Cracovia 2017",
|
||||
"name": "Cuartofinalista del PGL de Cracovia 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-951.png"
|
||||
},
|
||||
{
|
||||
@@ -401,22 +401,22 @@
|
||||
},
|
||||
{
|
||||
"id": "955",
|
||||
"name": "Campeón del ELEAGUE Boston 2018",
|
||||
"name": "Campeón del ELEAGUE de Boston 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-955.png"
|
||||
},
|
||||
{
|
||||
"id": "956",
|
||||
"name": "Finalista del ELEAGUE Boston 2018",
|
||||
"name": "Finalista del ELEAGUE de Boston 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-956.png"
|
||||
},
|
||||
{
|
||||
"id": "957",
|
||||
"name": "Semifinalista del ELEAGUE Boston 2018",
|
||||
"name": "Semifinalista del ELEAGUE de Boston 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-957.png"
|
||||
},
|
||||
{
|
||||
"id": "958",
|
||||
"name": "Cuartofinalista del ELEAGUE Boston 2018",
|
||||
"name": "Cuartofinalista del ELEAGUE de Boston 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-958.png"
|
||||
},
|
||||
{
|
||||
@@ -436,22 +436,22 @@
|
||||
},
|
||||
{
|
||||
"id": "962",
|
||||
"name": "Campeón del FACEIT Londres 2018",
|
||||
"name": "Campeón del FACEIT de Londres 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-962.png"
|
||||
},
|
||||
{
|
||||
"id": "963",
|
||||
"name": "Finalista del FACEIT Londres 2018",
|
||||
"name": "Finalista del FACEIT de Londres 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-963.png"
|
||||
},
|
||||
{
|
||||
"id": "964",
|
||||
"name": "Semifinalista del FACEIT Londres 2018",
|
||||
"name": "Semifinalista del FACEIT de Londres 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-964.png"
|
||||
},
|
||||
{
|
||||
"id": "965",
|
||||
"name": "Cuartofinalista del FACEIT Londres 2018",
|
||||
"name": "Cuartofinalista del FACEIT de Londres 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-965.png"
|
||||
},
|
||||
{
|
||||
@@ -491,82 +491,82 @@
|
||||
},
|
||||
{
|
||||
"id": "975",
|
||||
"name": "Campeón del StarLadder Berlín 2019",
|
||||
"name": "Campeón del StarLadder de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-975.png"
|
||||
},
|
||||
{
|
||||
"id": "976",
|
||||
"name": "Finalista del StarLadder Berlín 2019",
|
||||
"name": "Finalista del StarLadder de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-976.png"
|
||||
},
|
||||
{
|
||||
"id": "977",
|
||||
"name": "Semifinalista del StarLadder Berlín 2019",
|
||||
"name": "Semifinalista del StarLadder de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-977.png"
|
||||
},
|
||||
{
|
||||
"id": "978",
|
||||
"name": "Cuartofinalista del StarLadder Berlín 2019",
|
||||
"name": "Cuartofinalista del StarLadder de Berlín 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-978.png"
|
||||
},
|
||||
{
|
||||
"id": "979",
|
||||
"name": "Campeón del PGL Estocolmo 2021",
|
||||
"name": "Campeón del PGL de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-979.png"
|
||||
},
|
||||
{
|
||||
"id": "980",
|
||||
"name": "Finalista del PGL Estocolmo 2021",
|
||||
"name": "Finalista del PGL de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-980.png"
|
||||
},
|
||||
{
|
||||
"id": "981",
|
||||
"name": "Semifinalista del PGL Estocolmo 2021",
|
||||
"name": "Semifinalista del PGL de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-981.png"
|
||||
},
|
||||
{
|
||||
"id": "982",
|
||||
"name": "Cuartofinalista del PGL Estocolmo 2021",
|
||||
"name": "Cuartofinalista del PGL de Estocolmo 2021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-982.png"
|
||||
},
|
||||
{
|
||||
"id": "983",
|
||||
"name": "Campeón del PGL Amberes 2022",
|
||||
"name": "Campeón del PGL de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-983.png"
|
||||
},
|
||||
{
|
||||
"id": "984",
|
||||
"name": "Finalista del PGL Amberes 2022",
|
||||
"name": "Finalista del PGL de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-984.png"
|
||||
},
|
||||
{
|
||||
"id": "985",
|
||||
"name": "Semifinalista del PGL Amberes 2022",
|
||||
"name": "Semifinalista del PGL de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-985.png"
|
||||
},
|
||||
{
|
||||
"id": "986",
|
||||
"name": "Cuartofinalista del PGL Amberes 2022",
|
||||
"name": "Cuartofinalista del PGL de Amberes 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-986.png"
|
||||
},
|
||||
{
|
||||
"id": "988",
|
||||
"name": "Campeón del IEM Río 2022",
|
||||
"name": "Campeón del IEM de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-988.png"
|
||||
},
|
||||
{
|
||||
"id": "989",
|
||||
"name": "Finalista del IEM Río 2022",
|
||||
"name": "Finalista del IEM de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-989.png"
|
||||
},
|
||||
{
|
||||
"id": "990",
|
||||
"name": "Semifinalista del IEM Río 2022",
|
||||
"name": "Semifinalista del IEM de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-990.png"
|
||||
},
|
||||
{
|
||||
"id": "991",
|
||||
"name": "Cuartofinalista del IEM Río 2022",
|
||||
"name": "Cuartofinalista del IEM de Río 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-991.png"
|
||||
},
|
||||
{
|
||||
@@ -1621,22 +1621,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Campeón del PGL Copenhague 2024",
|
||||
"name": "Campeón del PGL de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4933.png"
|
||||
},
|
||||
{
|
||||
"id": "4934",
|
||||
"name": "Finalista del PGL Copenhague 2024",
|
||||
"name": "Finalista del PGL de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4934.png"
|
||||
},
|
||||
{
|
||||
"id": "4935",
|
||||
"name": "Semifinalista del PGL Copenhague 2024",
|
||||
"name": "Semifinalista del PGL de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4935.png"
|
||||
},
|
||||
{
|
||||
"id": "4936",
|
||||
"name": "Cuartofinalista del PGL Copenhague 2024",
|
||||
"name": "Cuartofinalista del PGL de Copenhague 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4936.png"
|
||||
},
|
||||
{
|
||||
@@ -1716,22 +1716,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4974",
|
||||
"name": "Campeón del Perfect World Shanghái 2024",
|
||||
"name": "Campeón del Perfect World de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4974.png"
|
||||
},
|
||||
{
|
||||
"id": "4975",
|
||||
"name": "Finalista de Perfect World Shanghái 2024",
|
||||
"name": "Finalista de Perfect World de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4975.png"
|
||||
},
|
||||
{
|
||||
"id": "4976",
|
||||
"name": "Semifinalista de Perfect World Shanghái 2024",
|
||||
"name": "Semifinalista de Perfect World de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4976.png"
|
||||
},
|
||||
{
|
||||
"id": "4977",
|
||||
"name": "Cuartofinalista de Perfect World Shanghái 2024",
|
||||
"name": "Cuartofinalista de Perfect World de Shanghái 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4977.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"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": "5111",
|
||||
"name": "Moneda de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moneda de plata de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moneda de oro de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moneda de diamante de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeón del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Cuartofinalista del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moneda del mapa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moneda del mapa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moneda del mapa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moneda del mapa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moneda del mapa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin de Dust II de aspecto genuino",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"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": "5111",
|
||||
"name": "Moneda de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moneda de plata de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moneda de oro de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moneda de diamante de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeón del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista del BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Cuartofinalista del BLAST.tv de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moneda del mapa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moneda del mapa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moneda del mapa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moneda del mapa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moneda del mapa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalla de la tercera temporada del modo Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin de Dust II de aspecto genuino",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Premierin kakkoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 -kolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 -hopeakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 -kultakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 -timanttikolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 -mestari",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 -finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 -semifinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 -neljännesfinalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery-karttakolikko",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premierin kolmoskauden mitali",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Aito Dust II -pinssi",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Médaille du mode Premier (saison 2)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Insigne d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Insigne en argent d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Insigne en or d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Insigne en diamant d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Équipe championne du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Demi-finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quart-de-finaliste du tournoi BLAST.tv d'Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Insigne de carte : Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Insigne de carte : Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Insigne de carte : Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Insigne de carte : Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Insigne de carte : Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Médaille du mode Premier (saison 3)",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin's Dust II (Authentique)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Premier Második Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Ezüst Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Arany Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Gyémánt Érme",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "A BLAST.tv Austin 2025 bajnoka",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "A BLAST.tv Austin 2025 döntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "A BLAST.tv Austin 2025 elődöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "A BLAST.tv Austin 2025 negyeddöntőse",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Pályaérem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Premier Harmadik Szezon Érem",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Dust II kitűző (Eredeti)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medaglia della Stagione due Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Gettone di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Gettone d'argento di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Gettone d'oro di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Gettone di diamante di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campione del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Quartofinalista del BLAST.tv di Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Gettone della mappa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Gettone della mappa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Gettone della mappa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Gettone della mappa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Gettone della mappa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medaglia della Stagione tre Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Spilla di Dust II Autentico",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "プレミアシーズン 2 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 コイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 シルバーコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 ゴールドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 ダイヤモンドコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 優勝",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 準決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 準々決勝進出",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery マップコイン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "プレミアシーズン 3 メダル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "ジェニュイン Dust II ピン",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "프리미어 시즌 2 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "오스틴 2025 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "오스틴 2025 은 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "오스틴 2025 금 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "오스틴 2025 다이아몬드 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 우승팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv 오스틴 2025 결승 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 4강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv 오스틴 2025 CS2 메이저 대회 8강 진출팀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "에이전시 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "쥐라 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "그레일 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "도그타운 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "브루어리 맵 주화",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "프리미어 시즌 3 훈장",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "진품 더스트 2 핀",
|
||||
|
||||
@@ -41,37 +41,37 @@
|
||||
},
|
||||
{
|
||||
"id": "883",
|
||||
"name": "Kampioen van ESL One Cologne 2014",
|
||||
"name": "Kampioen van ESL One Keulen 2014",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-883.png"
|
||||
},
|
||||
{
|
||||
"id": "884",
|
||||
"name": "Finalist van ESL One Cologne 2014",
|
||||
"name": "Finalist van ESL One Keulen 2014",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-884.png"
|
||||
},
|
||||
{
|
||||
"id": "885",
|
||||
"name": "Halvefinalist van ESL One Cologne 2014",
|
||||
"name": "Halvefinalist van ESL One Keulen 2014",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-885.png"
|
||||
},
|
||||
{
|
||||
"id": "886",
|
||||
"name": "Kwartfinalist van ESL One Cologne 2014",
|
||||
"name": "Kwartfinalist van ESL One Keulen 2014",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-886.png"
|
||||
},
|
||||
{
|
||||
"id": "887",
|
||||
"name": "Bronzen Cologne 2014 Pick'Em-trofee",
|
||||
"name": "Bronzen Keulen 2014 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-887.png"
|
||||
},
|
||||
{
|
||||
"id": "888",
|
||||
"name": "Zilveren Cologne 2014 Pick'Em-trofee",
|
||||
"name": "Zilveren Keulen 2014 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-888.png"
|
||||
},
|
||||
{
|
||||
"id": "889",
|
||||
"name": "Gouden Cologne 2014 Pick'Em-trofee",
|
||||
"name": "Gouden Keulen 2014 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-889.png"
|
||||
},
|
||||
{
|
||||
@@ -146,37 +146,37 @@
|
||||
},
|
||||
{
|
||||
"id": "904",
|
||||
"name": "Kampioen van ESL One Cologne 2015",
|
||||
"name": "Kampioen van ESL One Keulen 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-904.png"
|
||||
},
|
||||
{
|
||||
"id": "905",
|
||||
"name": "Finalist van ESL One Cologne 2015",
|
||||
"name": "Finalist van ESL One Keulen 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-905.png"
|
||||
},
|
||||
{
|
||||
"id": "906",
|
||||
"name": "Halvefinalist van ESL One Cologne 2015",
|
||||
"name": "Halvefinalist van ESL One Keulen 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-906.png"
|
||||
},
|
||||
{
|
||||
"id": "907",
|
||||
"name": "Kwartfinalist van ESL One Cologne 2015",
|
||||
"name": "Kwartfinalist van ESL One Keulen 2015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-907.png"
|
||||
},
|
||||
{
|
||||
"id": "908",
|
||||
"name": "Bronzen Cologne 2015 Pick'Em-trofee",
|
||||
"name": "Bronzen Keulen 2015 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-908.png"
|
||||
},
|
||||
{
|
||||
"id": "909",
|
||||
"name": "Zilveren Cologne 2015 Pick'Em-trofee",
|
||||
"name": "Zilveren Keulen 2015 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-909.png"
|
||||
},
|
||||
{
|
||||
"id": "910",
|
||||
"name": "Gouden Cologne 2015 Pick'Em-trofee",
|
||||
"name": "Gouden Keulen 2015 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-910.png"
|
||||
},
|
||||
{
|
||||
@@ -281,52 +281,52 @@
|
||||
},
|
||||
{
|
||||
"id": "931",
|
||||
"name": "Kampioen van ESL One Cologne 2016",
|
||||
"name": "Kampioen van ESL One Keulen 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-931.png"
|
||||
},
|
||||
{
|
||||
"id": "932",
|
||||
"name": "Finalist van ESL One Cologne 2016",
|
||||
"name": "Finalist van ESL One Keulen 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-932.png"
|
||||
},
|
||||
{
|
||||
"id": "933",
|
||||
"name": "Halvefinalist van ESL One Cologne 2016",
|
||||
"name": "Halvefinalist van ESL One Keulen 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-933.png"
|
||||
},
|
||||
{
|
||||
"id": "934",
|
||||
"name": "Kwartfinalist van ESL One Cologne 2016",
|
||||
"name": "Kwartfinalist van ESL One Keulen 2016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-934.png"
|
||||
},
|
||||
{
|
||||
"id": "935",
|
||||
"name": "Bronzen Cologne 2016 Pick'Em-trofee",
|
||||
"name": "Bronzen Keulen 2016 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-935.png"
|
||||
},
|
||||
{
|
||||
"id": "936",
|
||||
"name": "Zilveren Cologne 2016 Pick'Em-trofee",
|
||||
"name": "Zilveren Keulen 2016 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-936.png"
|
||||
},
|
||||
{
|
||||
"id": "937",
|
||||
"name": "Gouden Cologne 2016 Pick'Em-trofee",
|
||||
"name": "Gouden Keulen 2016 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-937.png"
|
||||
},
|
||||
{
|
||||
"id": "938",
|
||||
"name": "Bronzen Cologne 2016 Fantasy-trofee",
|
||||
"name": "Bronzen Keulen 2016 Fantasy-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-938.png"
|
||||
},
|
||||
{
|
||||
"id": "939",
|
||||
"name": "Zilveren Cologne 2016 Fantasy-trofee",
|
||||
"name": "Zilveren Keulen 2016 Fantasy-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-939.png"
|
||||
},
|
||||
{
|
||||
"id": "940",
|
||||
"name": "Gouden Cologne 2016 Fantasy-trofee",
|
||||
"name": "Gouden Keulen 2016 Fantasy-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-940.png"
|
||||
},
|
||||
{
|
||||
@@ -366,37 +366,37 @@
|
||||
},
|
||||
{
|
||||
"id": "948",
|
||||
"name": "Kampioen van PGL Krakow 2017",
|
||||
"name": "Kampioen van PGL Krakau 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-948.png"
|
||||
},
|
||||
{
|
||||
"id": "949",
|
||||
"name": "Finalist van PGL Krakow 2017",
|
||||
"name": "Finalist van PGL Krakau 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-949.png"
|
||||
},
|
||||
{
|
||||
"id": "950",
|
||||
"name": "Halvefinalist van PGL Krakow 2017",
|
||||
"name": "Halvefinalist van PGL Krakau 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-950.png"
|
||||
},
|
||||
{
|
||||
"id": "951",
|
||||
"name": "Kwartfinalist van PGL Krakow 2017",
|
||||
"name": "Kwartfinalist van PGL Krakau 2017",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-951.png"
|
||||
},
|
||||
{
|
||||
"id": "952",
|
||||
"name": "Bronzen Krakow 2017 Pick'Em-trofee",
|
||||
"name": "Bronzen Krakau 2017 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-952.png"
|
||||
},
|
||||
{
|
||||
"id": "953",
|
||||
"name": "Zilveren Krakow 2017 Pick'Em-trofee",
|
||||
"name": "Zilveren Krakau 2017 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-953.png"
|
||||
},
|
||||
{
|
||||
"id": "954",
|
||||
"name": "Gouden Krakow 2017 Pick'Em-trofee",
|
||||
"name": "Gouden Krakau 2017 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-954.png"
|
||||
},
|
||||
{
|
||||
@@ -436,37 +436,37 @@
|
||||
},
|
||||
{
|
||||
"id": "962",
|
||||
"name": "Kampioen van FACEIT London 2018",
|
||||
"name": "Kampioen van FACEIT Londen 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-962.png"
|
||||
},
|
||||
{
|
||||
"id": "963",
|
||||
"name": "Finalist van FACEIT London 2018",
|
||||
"name": "Finalist van FACEIT Londen 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-963.png"
|
||||
},
|
||||
{
|
||||
"id": "964",
|
||||
"name": "Halvefinalist van FACEIT London 2018",
|
||||
"name": "Halvefinalist van FACEIT Londen 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-964.png"
|
||||
},
|
||||
{
|
||||
"id": "965",
|
||||
"name": "Kwartfinalist van FACEIT London 2018",
|
||||
"name": "Kwartfinalist van FACEIT Londen 2018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-965.png"
|
||||
},
|
||||
{
|
||||
"id": "966",
|
||||
"name": "Bronzen London 2018 Pick'Em-trofee",
|
||||
"name": "Bronzen Londen 2018 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-966.png"
|
||||
},
|
||||
{
|
||||
"id": "967",
|
||||
"name": "Zilveren London 2018 Pick'Em-trofee",
|
||||
"name": "Zilveren Londen 2018 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-967.png"
|
||||
},
|
||||
{
|
||||
"id": "968",
|
||||
"name": "Gouden London 2018 Pick'Em-trofee",
|
||||
"name": "Gouden Londen 2018 Pick'Em-trofee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-968.png"
|
||||
},
|
||||
{
|
||||
@@ -491,22 +491,22 @@
|
||||
},
|
||||
{
|
||||
"id": "975",
|
||||
"name": "Kampioen van StarLadder Berlin 2019",
|
||||
"name": "Kampioen van StarLadder Berlijn 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-975.png"
|
||||
},
|
||||
{
|
||||
"id": "976",
|
||||
"name": "Finalist van StarLadder Berlin 2019",
|
||||
"name": "Finalist van StarLadder Berlijn 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-976.png"
|
||||
},
|
||||
{
|
||||
"id": "977",
|
||||
"name": "Halvefinalist van StarLadder Berlin 2019",
|
||||
"name": "Halvefinalist van StarLadder Berlijn 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-977.png"
|
||||
},
|
||||
{
|
||||
"id": "978",
|
||||
"name": "Kwartfinalist van StarLadder Berlin 2019",
|
||||
"name": "Kwartfinalist van StarLadder Berlijn 2019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-978.png"
|
||||
},
|
||||
{
|
||||
@@ -531,22 +531,22 @@
|
||||
},
|
||||
{
|
||||
"id": "983",
|
||||
"name": "Kampioen van PGL Antwerp 2022",
|
||||
"name": "Kampioen van PGL Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-983.png"
|
||||
},
|
||||
{
|
||||
"id": "984",
|
||||
"name": "Finalist van PGL Antwerp 2022",
|
||||
"name": "Finalist van PGL Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-984.png"
|
||||
},
|
||||
{
|
||||
"id": "985",
|
||||
"name": "Halvefinalist van PGL Antwerp 2022",
|
||||
"name": "Halvefinalist van PGL Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-985.png"
|
||||
},
|
||||
{
|
||||
"id": "986",
|
||||
"name": "Kwartfinalist van PGL Antwerp 2022",
|
||||
"name": "Kwartfinalist van PGL Antwerpen 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-986.png"
|
||||
},
|
||||
{
|
||||
@@ -571,37 +571,37 @@
|
||||
},
|
||||
{
|
||||
"id": "992",
|
||||
"name": "Champion at BLAST.tv Paris 2023",
|
||||
"name": "Kampioen van BLAST.tv Parijs 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 van BLAST.tv Parijs 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": "Halvefinalist van BLAST.tv Parijs 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": "Kwartfinalist van BLAST.tv Parijs 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"name": "Operation Payback-uitdagingsmunt",
|
||||
"name": "Operatie Payback-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1001.png"
|
||||
},
|
||||
{
|
||||
"id": "1002",
|
||||
"name": "Zilveren Operation Payback-munt",
|
||||
"name": "Zilveren Operatie Payback-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1002.png"
|
||||
},
|
||||
{
|
||||
"id": "1003",
|
||||
"name": "Gouden Operation Payback-munt",
|
||||
"name": "Gouden Operatie Payback-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1003.png"
|
||||
},
|
||||
{
|
||||
@@ -641,17 +641,17 @@
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"name": "Operation Bravo-uitdagingsmunt",
|
||||
"name": "Operatie Bravo-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1013.png"
|
||||
},
|
||||
{
|
||||
"id": "1014",
|
||||
"name": "Zilveren Operation Bravo-munt",
|
||||
"name": "Zilveren Operatie Bravo-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1014.png"
|
||||
},
|
||||
{
|
||||
"id": "1015",
|
||||
"name": "Gouden Operation Bravo-munt",
|
||||
"name": "Gouden Operatie Bravo-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1015.png"
|
||||
},
|
||||
{
|
||||
@@ -691,32 +691,32 @@
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"name": "Operation Phoenix-uitdagingsmunt",
|
||||
"name": "Operatie Phoenix-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1024.png"
|
||||
},
|
||||
{
|
||||
"id": "1025",
|
||||
"name": "Zilveren Operation Phoenix-munt",
|
||||
"name": "Zilveren Operatie Phoenix-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1025.png"
|
||||
},
|
||||
{
|
||||
"id": "1026",
|
||||
"name": "Gouden Operation Phoenix-munt",
|
||||
"name": "Gouden Operatie Phoenix-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1026.png"
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"name": "Operation Breakout-uitdagingsmunt",
|
||||
"name": "Operatie Breakout-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1028.png"
|
||||
},
|
||||
{
|
||||
"id": "1029",
|
||||
"name": "Zilveren Operation Breakout-munt",
|
||||
"name": "Zilveren Operatie Breakout-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1029.png"
|
||||
},
|
||||
{
|
||||
"id": "1030",
|
||||
"name": "Gouden Operation Breakout-munt",
|
||||
"name": "Gouden Operatie Breakout-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1030.png"
|
||||
},
|
||||
{
|
||||
@@ -1016,32 +1016,32 @@
|
||||
},
|
||||
{
|
||||
"id": "1316",
|
||||
"name": "Operation Vanguard-uitdagingsmunt",
|
||||
"name": "Operatie Vanguard-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1316.png"
|
||||
},
|
||||
{
|
||||
"id": "1317",
|
||||
"name": "Zilveren Operation Vanguard-munt",
|
||||
"name": "Zilveren Operatie Vanguard-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1317.png"
|
||||
},
|
||||
{
|
||||
"id": "1318",
|
||||
"name": "Gouden Operation Vanguard-munt",
|
||||
"name": "Gouden Operatie Vanguard-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1318.png"
|
||||
},
|
||||
{
|
||||
"id": "1327",
|
||||
"name": "Operation Bloodhound-uitdagingsmunt",
|
||||
"name": "Operatie Bloodhound-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1327.png"
|
||||
},
|
||||
{
|
||||
"id": "1328",
|
||||
"name": "Zilveren Operation Bloodhound-munt",
|
||||
"name": "Zilveren Operatie Bloodhound-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1328.png"
|
||||
},
|
||||
{
|
||||
"id": "1329",
|
||||
"name": "Gouden Operation Bloodhound-munt",
|
||||
"name": "Gouden Operatie Bloodhound-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1329.png"
|
||||
},
|
||||
{
|
||||
@@ -1056,17 +1056,17 @@
|
||||
},
|
||||
{
|
||||
"id": "1336",
|
||||
"name": "Operation Wildfire-uitdagingsmunt",
|
||||
"name": "Operatie Wildfire-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1336.png"
|
||||
},
|
||||
{
|
||||
"id": "1337",
|
||||
"name": "Zilveren Operation Wildfire-munt",
|
||||
"name": "Zilveren Operatie Wildfire-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1337.png"
|
||||
},
|
||||
{
|
||||
"id": "1338",
|
||||
"name": "Gouden Operation Wildfire-munt",
|
||||
"name": "Gouden Operatie Wildfire-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-1338.png"
|
||||
},
|
||||
{
|
||||
@@ -1196,42 +1196,42 @@
|
||||
},
|
||||
{
|
||||
"id": "4353",
|
||||
"name": "Operation Hydra-uitdagingsmunt",
|
||||
"name": "Operatie Hydra-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4353.png"
|
||||
},
|
||||
{
|
||||
"id": "4354",
|
||||
"name": "Zilveren Operation Hydra-munt",
|
||||
"name": "Zilveren Operatie Hydra-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4354.png"
|
||||
},
|
||||
{
|
||||
"id": "4355",
|
||||
"name": "Gouden Operation Hydra-munt",
|
||||
"name": "Gouden Operatie Hydra-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4355.png"
|
||||
},
|
||||
{
|
||||
"id": "4356",
|
||||
"name": "Diamanten Operation Hydra-munt",
|
||||
"name": "Diamanten Operatie Hydra-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4356.png"
|
||||
},
|
||||
{
|
||||
"id": "4550",
|
||||
"name": "Operation Shattered Web-uitdagingsmunt",
|
||||
"name": "Operatie Shattered Web-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4550.png"
|
||||
},
|
||||
{
|
||||
"id": "4551",
|
||||
"name": "Zilveren Operation Shattered Web-munt",
|
||||
"name": "Zilveren Operatie Shattered Web-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4551.png"
|
||||
},
|
||||
{
|
||||
"id": "4552",
|
||||
"name": "Gouden Operation Shattered Web-munt",
|
||||
"name": "Gouden Operatie Shattered Web-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4552.png"
|
||||
},
|
||||
{
|
||||
"id": "4553",
|
||||
"name": "Diamanten Operation Shattered Web-munt",
|
||||
"name": "Diamanten Operatie Shattered Web-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4553.png"
|
||||
},
|
||||
{
|
||||
@@ -1256,22 +1256,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4623",
|
||||
"name": "Berlin 2019-munt",
|
||||
"name": "Berlijn 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4623.png"
|
||||
},
|
||||
{
|
||||
"id": "4624",
|
||||
"name": "Zilveren Berlin 2019-munt",
|
||||
"name": "Zilveren Berlijn 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4624.png"
|
||||
},
|
||||
{
|
||||
"id": "4625",
|
||||
"name": "Gouden Berlin 2019-munt",
|
||||
"name": "Gouden Berlijn 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4625.png"
|
||||
},
|
||||
{
|
||||
"id": "4626",
|
||||
"name": "Diamanten Berlin 2019-munt",
|
||||
"name": "Diamanten Berlijn 2019-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4626.png"
|
||||
},
|
||||
{
|
||||
@@ -1361,22 +1361,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4700",
|
||||
"name": "Operation Broken Fang-uitdagingsmunt",
|
||||
"name": "Operatie Broken Fang-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4700.png"
|
||||
},
|
||||
{
|
||||
"id": "4701",
|
||||
"name": "Zilveren Operation Broken Fang-munt",
|
||||
"name": "Zilveren Operatie Broken Fang-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4701.png"
|
||||
},
|
||||
{
|
||||
"id": "4702",
|
||||
"name": "Gouden Operation Broken Fang-munt",
|
||||
"name": "Gouden Operatie Broken Fang-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4702.png"
|
||||
},
|
||||
{
|
||||
"id": "4703",
|
||||
"name": "Diamanten Operation Broken Fang-munt",
|
||||
"name": "Diamanten Operatie Broken Fang-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4703.png"
|
||||
},
|
||||
{
|
||||
@@ -1411,22 +1411,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4759",
|
||||
"name": "Operation Riptide-uitdagingsmunt",
|
||||
"name": "Operatie Riptide-uitdagingsmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4759.png"
|
||||
},
|
||||
{
|
||||
"id": "4760",
|
||||
"name": "Zilveren Operation Riptide-munt",
|
||||
"name": "Zilveren Operatie Riptide-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4760.png"
|
||||
},
|
||||
{
|
||||
"id": "4761",
|
||||
"name": "Gouden Operation Riptide-munt",
|
||||
"name": "Gouden Operatie Riptide-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4761.png"
|
||||
},
|
||||
{
|
||||
"id": "4762",
|
||||
"name": "Diamanten Operation Riptide-munt",
|
||||
"name": "Diamanten Operatie Riptide-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4762.png"
|
||||
},
|
||||
{
|
||||
@@ -1481,22 +1481,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4826",
|
||||
"name": "Antwerp 2022-munt",
|
||||
"name": "Antwerpen 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4826.png"
|
||||
},
|
||||
{
|
||||
"id": "4827",
|
||||
"name": "Zilveren Antwerp 2022-munt",
|
||||
"name": "Zilveren Antwerpen 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4827.png"
|
||||
},
|
||||
{
|
||||
"id": "4828",
|
||||
"name": "Gouden Antwerp 2022-munt",
|
||||
"name": "Gouden Antwerpen 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4828.png"
|
||||
},
|
||||
{
|
||||
"id": "4829",
|
||||
"name": "Diamanten Antwerp 2022-munt",
|
||||
"name": "Diamanten Antwerpen 2022-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4829.png"
|
||||
},
|
||||
{
|
||||
@@ -1551,22 +1551,22 @@
|
||||
},
|
||||
{
|
||||
"id": "4884",
|
||||
"name": "Paris 2023-munt",
|
||||
"name": "Parijs 2023-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4884.png"
|
||||
},
|
||||
{
|
||||
"id": "4885",
|
||||
"name": "Zilveren Paris 2023-munt",
|
||||
"name": "Zilveren Parijs 2023-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4885.png"
|
||||
},
|
||||
{
|
||||
"id": "4886",
|
||||
"name": "Gouden Paris 2023-munt",
|
||||
"name": "Gouden Parijs 2023-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4886.png"
|
||||
},
|
||||
{
|
||||
"id": "4887",
|
||||
"name": "Diamanten Paris 2023-munt",
|
||||
"name": "Diamanten Parijs 2023-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4887.png"
|
||||
},
|
||||
{
|
||||
@@ -1601,42 +1601,42 @@
|
||||
},
|
||||
{
|
||||
"id": "4917",
|
||||
"name": "Copenhagen 2024-munt",
|
||||
"name": "Kopenhagen 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4917.png"
|
||||
},
|
||||
{
|
||||
"id": "4918",
|
||||
"name": "Zilveren Copenhagen 2024-munt",
|
||||
"name": "Zilveren Kopenhagen 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4918.png"
|
||||
},
|
||||
{
|
||||
"id": "4919",
|
||||
"name": "Gouden Copenhagen 2024-munt",
|
||||
"name": "Gouden Kopenhagen 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4919.png"
|
||||
},
|
||||
{
|
||||
"id": "4920",
|
||||
"name": "Diamanten Copenhagen 2024-munt",
|
||||
"name": "Diamanten Kopenhagen 2024-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4920.png"
|
||||
},
|
||||
{
|
||||
"id": "4933",
|
||||
"name": "Kampioen van PGL Copenhagen 2024",
|
||||
"name": "Kampioen van PGL Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4933.png"
|
||||
},
|
||||
{
|
||||
"id": "4934",
|
||||
"name": "Finalist van PGL Copenhagen 2024",
|
||||
"name": "Finalist van PGL Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4934.png"
|
||||
},
|
||||
{
|
||||
"id": "4935",
|
||||
"name": "Halvefinalist van PGL Copenhagen 2024",
|
||||
"name": "Halvefinalist van PGL Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4935.png"
|
||||
},
|
||||
{
|
||||
"id": "4936",
|
||||
"name": "Kwartfinalist van PGL Copenhagen 2024",
|
||||
"name": "Kwartfinalist van PGL Kopenhagen 2024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4936.png"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Premier-medaille voor seizoen twee",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Zilveren Austin 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Gouden Austin 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamanten Austin 2025-munt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Kampioen van BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist van BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Halvefinalist van BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kwartfinalist van BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery-mapmunt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medaille Premier-seizoen drie",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Authentiek Dust II-speld",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medalje for 2. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Mynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Sølvmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Gullmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmynt for Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Vinneren av BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartfinalist i BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Kartmynt for Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Kartmynt for Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Kartmynt for Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Kartmynt for Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Kartmynt for Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalje for 3. sesong av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pins – Dust II (Ekte)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medal 2. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Srebrny żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Złoty żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamentowy żeton BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Mistrz BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Półfinalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Ćwierćfinalista BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Żeton mapy Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Żeton mapy Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Żeton mapy Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Żeton mapy Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Żeton mapy Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medal 3. Sezonu Trybu Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Odznaka Dust II (oryginał)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medalha da Segunda Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moeda do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moeda de Prata do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moeda de Ouro do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moeda de Diamante do Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeão do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Jogador das QF do Austin 2025 da BLAST.tv",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moeda do Mapa Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moeda do Mapa Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moeda do Mapa Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moeda do Mapa Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moeda do Mapa Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalha da Terceira Temporada Especial",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Broche | Dust II Genuíno",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medalha da Temporada 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moeda de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Moeda de Prata de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Moeda de Ouro de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Moeda de Diamante de Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campeão do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalista do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalista do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Participante nos Quartos de Final do BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moeda do Mapa \\\"Agency\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moeda do Mapa \\\"Jura\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moeda do Mapa \\\"Grail\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moeda do Mapa \\\"Dogtown\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moeda do Mapa \\\"Brewery\\\"",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalha da Temporada 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Pin - Dust II Genuíno",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Medalie Premier - Sezonul 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Moneda Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 - Monedă de argint",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 - Monedă de aur",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 - Monedă de diamant",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Campion la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Sfertfinalist la BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Moneda hărții Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Moneda hărții Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Moneda hărții Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Moneda hărții Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Moneda hărții Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalie Premier - Sezonul 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Insignă Dust II (Autentic)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Медаль второго премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Серебряная монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Золотая монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Бриллиантовая монета BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Чемпион BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Финалист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Полуфиналист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Четвертьфиналист BLAST.tv Austin Major 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета карты Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета карты Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета карты Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета карты Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета карты Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медаль третьего премьер-сезона",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Высшей пробы Значок: Dust II",
|
||||
|
||||
@@ -551,42 +551,42 @@
|
||||
},
|
||||
{
|
||||
"id": "988",
|
||||
"name": "Champion at IEM Rio 2022",
|
||||
"name": "Mästare i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-988.png"
|
||||
},
|
||||
{
|
||||
"id": "989",
|
||||
"name": "Finalist at IEM Rio 2022",
|
||||
"name": "Finalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-989.png"
|
||||
},
|
||||
{
|
||||
"id": "990",
|
||||
"name": "Semifinalist at IEM Rio 2022",
|
||||
"name": "Semifinalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-990.png"
|
||||
},
|
||||
{
|
||||
"id": "991",
|
||||
"name": "Quarterfinalist at IEM Rio 2022",
|
||||
"name": "Kvartsfinalist i IEM Rio 2022",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-991.png"
|
||||
},
|
||||
{
|
||||
"id": "992",
|
||||
"name": "Champion at BLAST.tv Paris 2023",
|
||||
"name": "Mästare vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-992.png"
|
||||
},
|
||||
{
|
||||
"id": "993",
|
||||
"name": "Finalist at BLAST.tv Paris 2023",
|
||||
"name": "Finalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-993.png"
|
||||
},
|
||||
{
|
||||
"id": "994",
|
||||
"name": "Semifinalist at BLAST.tv Paris 2023",
|
||||
"name": "Semifinalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-994.png"
|
||||
},
|
||||
{
|
||||
"id": "995",
|
||||
"name": "Quarterfinalist at BLAST.tv Paris 2023",
|
||||
"name": "Kvartsfinalist vid BLAST.tv Paris 2023",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-995.png"
|
||||
},
|
||||
{
|
||||
@@ -1551,7 +1551,7 @@
|
||||
},
|
||||
{
|
||||
"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,12 +1561,12 @@
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"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": "5111",
|
||||
"name": "Mynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Silvermynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Guldmynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Diamantmynt: Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Mästare vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Finalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Semifinalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Kvartsfinalist vid BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Banmynt för Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Banmynt för Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Banmynt för Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Banmynt för Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Banmynt för Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Medalj för säsong tre av Premier",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Äkta Dust II-pin",
|
||||
|
||||
@@ -1756,189 +1756,434 @@
|
||||
},
|
||||
{
|
||||
"id": "4986",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่หนึ่ง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่หนึ่ง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4986.png"
|
||||
},
|
||||
{
|
||||
"id": "4987",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4987.png"
|
||||
},
|
||||
{
|
||||
"id": "4988",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4988.png"
|
||||
},
|
||||
{
|
||||
"id": "4989",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4989.png"
|
||||
},
|
||||
{
|
||||
"id": "4990",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4990.png"
|
||||
},
|
||||
{
|
||||
"id": "4991",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4991.png"
|
||||
},
|
||||
{
|
||||
"id": "4992",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4992.png"
|
||||
},
|
||||
{
|
||||
"id": "4993",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4993.png"
|
||||
},
|
||||
{
|
||||
"id": "4994",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4994.png"
|
||||
},
|
||||
{
|
||||
"id": "4995",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4995.png"
|
||||
},
|
||||
{
|
||||
"id": "4996",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4996.png"
|
||||
},
|
||||
{
|
||||
"id": "4997",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4997.png"
|
||||
},
|
||||
{
|
||||
"id": "4998",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4998.png"
|
||||
},
|
||||
{
|
||||
"id": "4999",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-4999.png"
|
||||
},
|
||||
{
|
||||
"id": "5000",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5000.png"
|
||||
},
|
||||
{
|
||||
"id": "5001",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5001.png"
|
||||
},
|
||||
{
|
||||
"id": "5002",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5002.png"
|
||||
},
|
||||
{
|
||||
"id": "5003",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5003.png"
|
||||
},
|
||||
{
|
||||
"id": "5004",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5004.png"
|
||||
},
|
||||
{
|
||||
"id": "5005",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5005.png"
|
||||
},
|
||||
{
|
||||
"id": "5006",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5006.png"
|
||||
},
|
||||
{
|
||||
"id": "5007",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5007.png"
|
||||
},
|
||||
{
|
||||
"id": "5008",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5008.png"
|
||||
},
|
||||
{
|
||||
"id": "5009",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5009.png"
|
||||
},
|
||||
{
|
||||
"id": "5010",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5010.png"
|
||||
},
|
||||
{
|
||||
"id": "5011",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5011.png"
|
||||
},
|
||||
{
|
||||
"id": "5012",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5012.png"
|
||||
},
|
||||
{
|
||||
"id": "5013",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5013.png"
|
||||
},
|
||||
{
|
||||
"id": "5014",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5014.png"
|
||||
},
|
||||
{
|
||||
"id": "5015",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5015.png"
|
||||
},
|
||||
{
|
||||
"id": "5016",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5016.png"
|
||||
},
|
||||
{
|
||||
"id": "5017",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5017.png"
|
||||
},
|
||||
{
|
||||
"id": "5018",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5018.png"
|
||||
},
|
||||
{
|
||||
"id": "5019",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5019.png"
|
||||
},
|
||||
{
|
||||
"id": "5020",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5020.png"
|
||||
},
|
||||
{
|
||||
"id": "5021",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5021.png"
|
||||
},
|
||||
{
|
||||
"id": "5022",
|
||||
"name": "เหรียญพรีเมียร์ฤดูกาลที่สอง",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สอง",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "เหรียญ Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "เหรียญเงิน Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "เหรียญทอง Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "เหรียญเพชร Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "ผู้ชนะเลิศที่ BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "ผู้เข้ารอบชิงชนะเลิศที่ BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "ผู้เข้ารอบรองชนะเลิศที่ BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "ผู้เข้ารอบก่อนรองชนะเลิศที่ BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "เหรียญแผนที่ Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "เหรียญแผนที่ Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "เหรียญแผนที่ Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "เหรียญแผนที่ Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "เหรียญแผนที่ Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "เหรียญรางวัลพรีเมียร์ฤดูกาลที่สาม",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "เข็มกลัด Dust II (Genuine)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Seçkin Modu İkinci Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 Gümüş Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 Altın Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 Elmas Jeton",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "BLAST.tv Austin 2025 Şampiyonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 Yarı Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 Çeyrek Finalisti",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency Haritası Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery Harita Jetonu",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Seçkin Modu Üçüncü Sezon Madalyası",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Hakiki Dust II Broşu",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Медаль другого сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Срібна монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Золота монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Діамантова монета «Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Чемпіон «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Фіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Півфіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Чвертьфіналіст «BLAST.tv Остін 2025»",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Монета мапи Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Монета мапи Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Монета мапи Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Монета мапи Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Монета мапи Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Медаль третього сезону прем’єр-режиму",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Значок «Dust II» (з першої партії)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "Huy chương Premier mùa 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Huy chương Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Huy chương bạc Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Huy chương vàng Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Huy chương kim cương Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Nhà vô địch giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "Lọt vào chung kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "Lọt vào bán kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "Lọt vào tứ kết giải BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Huy chương bản đồ - Agency",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Huy chương bản đồ - Jura",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Huy chương bản đồ - Grail",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Huy chương bản đồ - Dogtown",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Huy chương bản đồ - Brewery",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "Huy chương Premier mùa 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "Huy hiệu Dust II (Chính hãng)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "优先模式第二赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "奥斯汀 2025 硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "奥斯汀 2025 银色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "奥斯汀 2025 金色硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "奥斯汀 2025 钻石硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛冠军",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛半决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "2025年 BLAST.tv 奥斯汀锦标赛四分之一决赛选手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "办公大楼地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "侏罗地图硬币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "圣杯地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "多格镇地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "酿酒厂地图币",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "优先模式第三赛季奖牌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "炙热沙城 II 胸章(纯正)",
|
||||
|
||||
@@ -1939,6 +1939,251 @@
|
||||
"name": "優先權第 2 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5022.png"
|
||||
},
|
||||
{
|
||||
"id": "5111",
|
||||
"name": "Austin 2025 硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5111.png"
|
||||
},
|
||||
{
|
||||
"id": "5112",
|
||||
"name": "Austin 2025 銀幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5112.png"
|
||||
},
|
||||
{
|
||||
"id": "5113",
|
||||
"name": "Austin 2025 金幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5113.png"
|
||||
},
|
||||
{
|
||||
"id": "5114",
|
||||
"name": "Austin 2025 鑽石幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5114.png"
|
||||
},
|
||||
{
|
||||
"id": "5127",
|
||||
"name": "Champion at BLAST.tv Austin 2025",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5127.png"
|
||||
},
|
||||
{
|
||||
"id": "5128",
|
||||
"name": "BLAST.tv Austin 2025 的亞軍",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5128.png"
|
||||
},
|
||||
{
|
||||
"id": "5129",
|
||||
"name": "BLAST.tv Austin 2025 的前四強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5129.png"
|
||||
},
|
||||
{
|
||||
"id": "5130",
|
||||
"name": "BLAST.tv Austin 2025 的前八強選手",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5130.png"
|
||||
},
|
||||
{
|
||||
"id": "5135",
|
||||
"name": "Agency 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5135.png"
|
||||
},
|
||||
{
|
||||
"id": "5136",
|
||||
"name": "Jura 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5136.png"
|
||||
},
|
||||
{
|
||||
"id": "5137",
|
||||
"name": "Grail 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5137.png"
|
||||
},
|
||||
{
|
||||
"id": "5138",
|
||||
"name": "Dogtown 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5138.png"
|
||||
},
|
||||
{
|
||||
"id": "5139",
|
||||
"name": "Brewery 地圖硬幣",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5139.png"
|
||||
},
|
||||
{
|
||||
"id": "5140",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5140.png"
|
||||
},
|
||||
{
|
||||
"id": "5141",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5141.png"
|
||||
},
|
||||
{
|
||||
"id": "5142",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5142.png"
|
||||
},
|
||||
{
|
||||
"id": "5143",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5143.png"
|
||||
},
|
||||
{
|
||||
"id": "5144",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5144.png"
|
||||
},
|
||||
{
|
||||
"id": "5145",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5145.png"
|
||||
},
|
||||
{
|
||||
"id": "5146",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5146.png"
|
||||
},
|
||||
{
|
||||
"id": "5147",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5147.png"
|
||||
},
|
||||
{
|
||||
"id": "5148",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5148.png"
|
||||
},
|
||||
{
|
||||
"id": "5149",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5149.png"
|
||||
},
|
||||
{
|
||||
"id": "5150",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5150.png"
|
||||
},
|
||||
{
|
||||
"id": "5151",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5151.png"
|
||||
},
|
||||
{
|
||||
"id": "5152",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5152.png"
|
||||
},
|
||||
{
|
||||
"id": "5153",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5153.png"
|
||||
},
|
||||
{
|
||||
"id": "5154",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5154.png"
|
||||
},
|
||||
{
|
||||
"id": "5155",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5155.png"
|
||||
},
|
||||
{
|
||||
"id": "5156",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5156.png"
|
||||
},
|
||||
{
|
||||
"id": "5157",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5157.png"
|
||||
},
|
||||
{
|
||||
"id": "5158",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5158.png"
|
||||
},
|
||||
{
|
||||
"id": "5159",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5159.png"
|
||||
},
|
||||
{
|
||||
"id": "5160",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5160.png"
|
||||
},
|
||||
{
|
||||
"id": "5161",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5161.png"
|
||||
},
|
||||
{
|
||||
"id": "5162",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5162.png"
|
||||
},
|
||||
{
|
||||
"id": "5163",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5163.png"
|
||||
},
|
||||
{
|
||||
"id": "5164",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5164.png"
|
||||
},
|
||||
{
|
||||
"id": "5165",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5165.png"
|
||||
},
|
||||
{
|
||||
"id": "5166",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5166.png"
|
||||
},
|
||||
{
|
||||
"id": "5167",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5167.png"
|
||||
},
|
||||
{
|
||||
"id": "5168",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5168.png"
|
||||
},
|
||||
{
|
||||
"id": "5169",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5169.png"
|
||||
},
|
||||
{
|
||||
"id": "5170",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5170.png"
|
||||
},
|
||||
{
|
||||
"id": "5171",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5171.png"
|
||||
},
|
||||
{
|
||||
"id": "5172",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5172.png"
|
||||
},
|
||||
{
|
||||
"id": "5173",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5173.png"
|
||||
},
|
||||
{
|
||||
"id": "5174",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5174.png"
|
||||
},
|
||||
{
|
||||
"id": "5175",
|
||||
"name": "優先權第 3 賽季勳章",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/collectible-5175.png"
|
||||
},
|
||||
{
|
||||
"id": "6001",
|
||||
"name": "正統 Dust II 徽章",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортни ръкавици | Свръхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Състезателно зелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Черна вратовръзка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Състезателно зелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортни ръкавици | Нощни"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортни ръкавици | Свръхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshandsker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kørehandsker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kørehandsker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kørehandsker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshandsker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshandsker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Supraleiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Renn-Grün"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schwarze Fliege"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Renn-Grün"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Supraleiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Σπορ γάντια | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Σπορ γάντια | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Σπορ γάντια | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sport Gloves | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Driver Gloves | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Driver Gloves | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sport Gloves | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sport Gloves | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competición"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competición"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competencia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competencia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Urheiluhanskat | Suprajohde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Ajohanskat | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Ajohanskat | Smokki"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Ajohanskat | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Urheiluhanskat | Yönmustat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Urheiluhanskat | Suprajohde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Gants de sport (★) | Supraconducteur"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Gants de pilote (★) | Vert bolide"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Gants de pilote (★) | Smoking"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Gants de pilote (★) | Vert bolide"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Gants de sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Gants de sport (★) | Supraconducteur"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Szupravezető"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Versenyzöld"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Fekete Nyakkendő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Versenyzöld"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Szupravezető"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guanti sportivi ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guanti da autista ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guanti da autista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guanti da autista ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guanti sportivi ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guanti sportivi ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sport Gloves | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Driver Gloves | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Driver Gloves | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sport Gloves | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sport Gloves | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 초전도체"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레이싱 그린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 운전용 장갑 | 검은 속박"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레이싱 그린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 야행성"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 초전도체"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandschoenen | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Rijhandschoenen | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Rijhandschoenen | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Rijhandschoenen | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandschoenen | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandschoenen | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshansker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kjørehansker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kjørehansker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kjørehansker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshansker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshansker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Nadprzewodnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyścigowa zieleń"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Strój galowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyścigowa zieleń"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Mrok"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Nadprzewodnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Supercondutora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Piloto Verde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Piloto Verde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Supercondutora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Mănuși sport (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Mănuși de condus (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Mănuși de condus (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Mănuși de condus (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Mănuși sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Mănuși sport (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортивные перчатки | Сверхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Водительские перчатки | Гоночный зелёный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Водительские перчатки | Чёрный галстук"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Водительские перчатки | Гоночный зелёный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ноктс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортивные перчатки | Сверхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandskar | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Förarhandskar | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Förarhandskar | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Förarhandskar | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandskar | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandskar | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "ถุงมือขับรถ (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "ถุงมือกีฬา (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Spor Eldivenler | Süper İletken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Yarış Yeşili"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Siyah Kravat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Sürücü Eldivenleri | Yarış Yeşili"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Spor Eldivenler | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Spor Eldivenler | Süper İletken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Надпровідник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гоночний зелений"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Рукавиці водія (★) | Чорна краватка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Рукавиці водія (★) | Гоночний зелений"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Нокц"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Спортивні рукавиці (★) | Надпровідник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Găng tay lái xe (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Găng tay thể thao (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "运动手套(★) | 超导体"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "驾驶手套(★) | 墨绿色调"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "驾驶手套(★) | 西装革履"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "驾驶手套(★) | 墨绿色调"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "运动手套(★) | 夜行衣"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "运动手套(★) | 超导体"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -5,18 +5,6 @@
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 運動員手套 | 超導體"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 駕駛手套 | 英式賽車綠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
@@ -227,6 +215,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 駕駛手套 | 黑色領帶"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 駕駛手套 | 英式賽車綠"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
@@ -335,6 +329,12 @@
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 運動員手套 | 夜行者"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 運動員手套 | 超導體"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Джунджурия | Мъничък Саскуоч",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "2025910",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Превъзходство с Deagle",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | 2 изстрела в главата с пистолет",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.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": "2025210",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Бягащият MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Едно убийство е достатъчно",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Отличен най-добър момент BLAST.tv Austin 2025 | Страхувайте се от него",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Přívěsek | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Vedhæng | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "2025311",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Tredobbelt drab og en demontering",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "2025",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Løb og skyd",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Clutch 1 mod 2",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.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": "20251",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Hurtige reflekser",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | To granater i hovedet",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "202522",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Brollan – dobbeltdrab",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Den uovervindelige",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Flyvende skududveksling",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Næsten Ace",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Jeg er lige bag dig",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Nægtet AWP",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.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": "202513",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | dgt – næsten clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Tec-9-mesteren",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | dav1deuS – dobbeltdrab i Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Neglebidende clutch",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Overlegenhed med Deaglen",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | To pistolhovedskud",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | 910 – tredobbelt drab mod FaZe",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Løbende MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Højdepunkt fra Austin 2025 | Ét drab er nok",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Anhänger | Kleiner Bigfoot",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Γούρι | Lil' Squatch",
|
||||
"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": "2025100",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | 100 ζημιά χειροβομβίδων",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.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": "20253",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός πρώτος σκοτωμός από τον chopper",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός με πιστόλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τριπλός σκοτωμός και αφοπλισμός",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "2025",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τρέχα και ρίξε",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.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": "2025413",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Clutch King",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Γρήγορες αντιδράσεις",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Δύο χειροβομβίδες στο δόξα πα-τρί",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "202522",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός από τον Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Ο Άνθρωπος Ατσάλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Το ιπτάμενο σπρέι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Έμεινε στον Άσο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Είμαι ακριβώς πίσω σου",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.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": "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": "202513",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Σχεδόν κλατσάρισμα από τον dgt",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.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": "2025112",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Διπλός σκοτωμός από τον dav1deuS στην Anubis",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Κλατσαριστά",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.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": "20259102",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Δύο κεφαλίδια με πιστόλι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.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": "2025210",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Έτρεχε το MAC-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Ένας σκοτωμός είναι αρκετός",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Να τον φοβάσαι",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Καλύτερη Στιγμή – Όστιν 2025 | Τεστ, τεστ, ένα, δύο",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Charm | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 Highlight | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Colgante | Miniyeti",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Colgante | Miniyeti",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Riipus | Pikku-Pepsodentti",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "2025132",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Hui!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Austin 2025 -kohokohta | Testi: 1, 2, 3",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Porte-bonheur | Mini Bigfoot",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Talizmán | Kicsiláb",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Ciondolo | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "チャーム | Lil' Squatch",
|
||||
"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": "2025100",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 100 ユーティリティダメージ",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.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": "20253",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | chopper、トリプルエントリー",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.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": "2025311",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | トリプルキル&解除",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "2025",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | ラン・アンド・ガン",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.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": "2025413",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | クラッチキング",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.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": "202531",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 頭上に2発のグレネード",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "202522",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | Brollan、ダブルキル",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 鋼の男",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.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": "20254112",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 惜しくもエースならず",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.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": "2025122",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | AWPは渡さない",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.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": "202513",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | dgt、クラッチまでもう一歩",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.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": "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": "2025113",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | クラッチで魅せる",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.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": "20259102",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | ピストルでヘッドショット2発",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.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": "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": "20259101",
|
||||
"name": "Souvenir Charm | Austin 2025 ハイライト | 1キルで十分です",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "참 장식 | 리틀 스쿼치",
|
||||
"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": "2025100",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 유틸리티 피해 100",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.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": "20253",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | chopper 3연속 선제 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.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": "2025311",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 3연속 처치 후 폭탄 해체",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "2025",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 달리면서 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.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": "2025413",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 클러치 제왕",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 빠른 순발력",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 연속 수류탄 피해",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "202522",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Brollan 2연속 처치",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 아이언 맨",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 공중 연사",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 아깝게 놓친 에이스",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 후방 주의",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.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": "202529",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 하나, 둘, 셋, 돌격!",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat2kmp9vsspiritonnuke.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": "20259",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | Tec-9 마스터",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.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": "2025113",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 클러치 성공",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 데저트 이글로 승리",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.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": "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": "2025210",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | MAC-10의 위력",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.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": "2025132",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 다가오는 공포",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | 오스틴 2025 하이라이트 | 전술 실험",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Hangertje | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Anheng | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Przywieszka | Mały yeti",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Chaveiro | Pezinho Grande",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Amuleto | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Breloc | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Брелок | Крошка Спорт-сквоч",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Hänge | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "พวงกุญแจ | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "2025123",
|
||||
"name": "Souvenir Charm | ไฮไลต์ Austin 2025 | Testing123",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Süs | Minik Ayak",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Брелок | Маленький сасквач",
|
||||
"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": "2025100",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | 100 шкоди від гранат",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "202511",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Невдача для одного проти двох",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperwins1v1vsbrollanonmiragemouz.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": "20252",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Подвійне вбивство з пістолета",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Потрійне вбивство і знешкодження",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.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": "2025",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Постріл на бігу",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "202512",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Клатч одного проти двох",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix1v2tosecureot.png"
|
||||
},
|
||||
{
|
||||
"id": "2025413",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Король клатчу",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Швидка реакція",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Дві гранати в голову",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.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": "202522",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Подвійне вбивство від Brollan",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Залізна людина",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Польотна серія",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Майже ас",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Я просто позаду",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Без АВП",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.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": "202513",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | dgt: майже клатч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.png"
|
||||
},
|
||||
{
|
||||
"id": "20259",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Фахівець із ТЕК-9",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_fallentec9mastervspainonnuke.png"
|
||||
},
|
||||
{
|
||||
"id": "2025112",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Подвійне вбивство на Anubis від dav1deuS",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Ще один успішний клатч",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Домінантний орел",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.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": "20259103",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Потрійне вбивство від 910",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Швидкий МАК-10",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Одного вбивства достатньо",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Бійтеся його",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | Яскравий момент на «Остін 2025» | Один, два, три… мене чути?",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "Móc treo | Lil' Squatch",
|
||||
"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"
|
||||
}
|
||||
]
|
||||
@@ -163,5 +163,165 @@
|
||||
"id": "33",
|
||||
"name": "挂件 | 小脚怪",
|
||||
"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": "2025100",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 天雷地火无处逃",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopperdiesfrom100byutilityvsmouzonmirage.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": "20253",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 关键3杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3ktowinmap.png"
|
||||
},
|
||||
{
|
||||
"id": "20252",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 手枪双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk2kvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025311",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 三杀并拆除炸弹",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk3with1v1win.png"
|
||||
},
|
||||
{
|
||||
"id": "202541",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 四杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4kvsspiritonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "2025",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 跑打",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphatrunninghsvsspiritonmirage.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": "2025413",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 残局王者",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_magix4kand1v3winvsmouzonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20251",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 反应又快又准",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirofastawpflickvsmouzonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "202531",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 两颗满雷炸丝血",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxnadedto3hpvsspiritonmirage1.png"
|
||||
},
|
||||
{
|
||||
"id": "20254",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 四杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_spinxinsane4kclutchvsspiritonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "202522",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollan2kvsspiritondust2.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": "202510002",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 天雷地火无处藏",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_brollandiesfrom100to0fromutilityvsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025392",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 吹风机王朝跳爆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_chopper3kmp9vsspiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "20254112",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 可惜差点五杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_donk4kandfailed1v1vsmouzondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "202542",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 露就秒",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_jimpphat4konretakevspsiritondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025122",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 我用不了你也别用",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_shirothrowawayawpin1v2ondust2vsmouz.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": "202513",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 可惜!就差一点",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dgtfailed1v3vsfuriaonnuke.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": "2025112",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 双杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v2vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025113",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 精彩残局",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_dav1deus1v3vsfuriaonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "2025910",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 至尊沙鹰",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_910doubledeaglevsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20259102",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 手枪双爆",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9102kpistolvsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "20259103",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 三杀",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9103ktowinmapvsfazeonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025210",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 跑打吹风机",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_karrigan2kmac10vsmongolzonanubis.png"
|
||||
},
|
||||
{
|
||||
"id": "20259101",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 单杀但退敌",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_9101kvspainonmirage.png"
|
||||
},
|
||||
{
|
||||
"id": "2025132",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 致命空枪",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_mzinhoclose1v3vsvitalityondust2.png"
|
||||
},
|
||||
{
|
||||
"id": "2025123",
|
||||
"name": "Souvenir Charm | 2025年奥斯汀锦标赛高光时刻 | 敢于尝试新战",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/highlight-aus2025_flameztesting123vsthemongolzoninferno.png"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user