mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-17 18:39:07 +00:00
Compare commits
57 Commits
build-309
...
bfb2432f85
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bfb2432f85 | ||
|
|
b5d7f12024 | ||
|
|
9ec64e346f | ||
|
|
b4dc20523c | ||
|
|
8891ce815e | ||
|
|
ea9963b920 | ||
|
|
4a5a08aca9 | ||
|
|
573604a9d9 | ||
|
|
3929a43e46 | ||
|
|
f7f18b7919 | ||
|
|
0d110d83c7 | ||
|
|
db20e2eef9 | ||
|
|
536cea96d6 | ||
|
|
84684f4a26 | ||
|
|
48b9679236 | ||
|
|
7493ee4c7f | ||
|
|
027a547052 | ||
|
|
686c225f4f | ||
|
|
a5397e3831 | ||
|
|
1b95ddb089 | ||
|
|
7d4078dc40 | ||
|
|
e3011c51ae | ||
|
|
b99f30deb2 | ||
|
|
44c59e6bac | ||
|
|
845a40c189 | ||
|
|
f93bed46f1 | ||
|
|
ccee3e52c9 | ||
|
|
7d33693930 | ||
|
|
7b868611e5 | ||
|
|
b7289dd1e8 | ||
|
|
5808255780 | ||
|
|
7724102d7c | ||
|
|
a6b9982367 | ||
|
|
bff8a726ce | ||
|
|
aca68aac1a | ||
|
|
7e5e47f1d1 | ||
|
|
59b63646c9 | ||
|
|
1f32b7922b | ||
|
|
eba4ba08d2 | ||
|
|
18051501f8 | ||
|
|
9d96b75ca4 | ||
|
|
6ea0336814 | ||
|
|
52e8525117 | ||
|
|
3621c1d3ad | ||
|
|
22337b6c69 | ||
|
|
5b543fcd2c | ||
|
|
55702903ad | ||
|
|
c26093593f | ||
|
|
3af80fbe8f | ||
|
|
a521b63608 | ||
|
|
8d8b2c34c7 | ||
|
|
7dffaee088 | ||
|
|
ba04889a42 | ||
|
|
1e5ad85ad0 | ||
|
|
d518a410fc | ||
|
|
ff095198a1 | ||
|
|
ffd0623a52 |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7.0.x
|
||||
dotnet-version: 8.0.x
|
||||
- name: Restore
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
@@ -46,7 +46,7 @@ jobs:
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7.0.x
|
||||
dotnet-version: 8.0.x
|
||||
- name: Restore
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
|
||||
1398
Commands.cs
1398
Commands.cs
File diff suppressed because it is too large
Load Diff
13
Config.cs
13
Config.cs
@@ -34,12 +34,18 @@ namespace WeaponPaints
|
||||
|
||||
[JsonPropertyName("CommandMusic")]
|
||||
public List<string> CommandMusic { get; set; } = ["music"];
|
||||
|
||||
[JsonPropertyName("CommandPin")]
|
||||
public List<string> CommandPin { get; set; } = ["pin", "pins", "coin", "coins"];
|
||||
|
||||
[JsonPropertyName("CommandGlove")]
|
||||
public List<string> CommandGlove { get; set; } = ["gloves"];
|
||||
|
||||
[JsonPropertyName("CommandAgent")]
|
||||
public List<string> CommandAgent { get; set; } = ["agents"];
|
||||
|
||||
[JsonPropertyName("CommandStattrak")]
|
||||
public List<string> CommandStattrak { get; set; } = ["stattrak", "st"];
|
||||
|
||||
[JsonPropertyName("CommandSkin")]
|
||||
public List<string> CommandSkin { get; set; } = ["ws"];
|
||||
@@ -65,7 +71,7 @@ namespace WeaponPaints
|
||||
|
||||
public class WeaponPaintsConfig : BasePluginConfig
|
||||
{
|
||||
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 8;
|
||||
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 10;
|
||||
|
||||
[JsonPropertyName("SkinsLanguage")]
|
||||
public string SkinsLanguage { get; set; } = "en";
|
||||
@@ -86,12 +92,15 @@ namespace WeaponPaints
|
||||
public string DatabaseName { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("CmdRefreshCooldownSeconds")]
|
||||
public int CmdRefreshCooldownSeconds { get; set; } = 10;
|
||||
public int CmdRefreshCooldownSeconds { get; set; } = 3;
|
||||
|
||||
[JsonPropertyName("Website")]
|
||||
public string Website { get; set; } = "example.com/skins";
|
||||
|
||||
[JsonPropertyName("Additional")]
|
||||
public Additional Additional { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("MenuType")]
|
||||
public string MenuType { get; set; } = "selectable";
|
||||
}
|
||||
}
|
||||
100
Events.cs
100
Events.cs
@@ -2,6 +2,7 @@
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Attributes.Registration;
|
||||
using CounterStrikeSharp.API.Modules.Entities;
|
||||
using CounterStrikeSharp.API.Modules.Entities.Constants;
|
||||
using CounterStrikeSharp.API.Modules.Memory;
|
||||
using CounterStrikeSharp.API.Modules.Memory.DynamicFunctions;
|
||||
|
||||
@@ -9,6 +10,8 @@ namespace WeaponPaints
|
||||
{
|
||||
public partial class WeaponPaints
|
||||
{
|
||||
private bool _mvpPlayed;
|
||||
|
||||
[GameEventHandler]
|
||||
public HookResult OnClientFullConnect(EventPlayerConnectFull @event, GameEventInfo info)
|
||||
{
|
||||
@@ -77,16 +80,17 @@ namespace WeaponPaints
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var weaponInfos))
|
||||
return HookResult.Continue;
|
||||
|
||||
if (WeaponSync != null)
|
||||
_ = Task.Run(async () => await WeaponSync.SyncStatTrakToDatabase(playerInfo, weaponInfos));
|
||||
|
||||
if (Config.Additional.SkinEnabled)
|
||||
Task.Run(async () =>
|
||||
{
|
||||
GPlayerWeaponsInfo.TryRemove(player.Slot, out _);
|
||||
}
|
||||
if (WeaponSync != null)
|
||||
await WeaponSync.SyncStatTrakToDatabase(playerInfo);
|
||||
|
||||
if (Config.Additional.SkinEnabled)
|
||||
{
|
||||
GPlayerWeaponsInfo.TryRemove(player.Slot, out _);
|
||||
}
|
||||
});
|
||||
|
||||
if (Config.Additional.KnifeEnabled)
|
||||
{
|
||||
GPlayersKnife.TryRemove(player.Slot, out _);
|
||||
@@ -107,19 +111,22 @@ namespace WeaponPaints
|
||||
{
|
||||
GPlayersPin.TryRemove(player.Slot, out _);
|
||||
}
|
||||
|
||||
|
||||
_temporaryPlayerWeaponWear.TryRemove(player.Slot, out _);
|
||||
CommandsCooldown.Remove(player.Slot);
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
|
||||
|
||||
private void OnMapStart(string mapName)
|
||||
{
|
||||
if (Config.Additional is { KnifeEnabled: false, SkinEnabled: false, GloveEnabled: false }) return;
|
||||
|
||||
|
||||
if (Database != null)
|
||||
WeaponSync = new WeaponSynchronization(Database, Config);
|
||||
|
||||
_fadeSeed = 0;
|
||||
_nextItemId = MinimumCustomItemId;
|
||||
}
|
||||
|
||||
private HookResult OnPlayerSpawn(EventPlayerSpawn @event, GameEventInfo info)
|
||||
@@ -137,6 +144,7 @@ namespace WeaponPaints
|
||||
GivePlayerMusicKit(player);
|
||||
GivePlayerAgent(player);
|
||||
GivePlayerGloves(player);
|
||||
GivePlayerPin(player);
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
@@ -144,13 +152,45 @@ namespace WeaponPaints
|
||||
private HookResult OnRoundEnd(EventRoundEnd @event, GameEventInfo info)
|
||||
{
|
||||
_gBCommandsAllowed = false;
|
||||
|
||||
return HookResult.Continue;
|
||||
}
|
||||
|
||||
private HookResult OnRoundStart(EventRoundStart @event, GameEventInfo info)
|
||||
{
|
||||
_gBCommandsAllowed = true;
|
||||
_mvpPlayed = false;
|
||||
return HookResult.Continue;
|
||||
}
|
||||
|
||||
private HookResult OnRoundMvp(EventRoundMvp @event, GameEventInfo info)
|
||||
{
|
||||
if (_mvpPlayed)
|
||||
return HookResult.Continue;
|
||||
|
||||
var player = @event.Userid;
|
||||
|
||||
if (player == null || !player.IsValid || player.IsBot)
|
||||
return HookResult.Continue;
|
||||
|
||||
if (!(GPlayersMusic.TryGetValue(player.Slot, out var musicInfo)
|
||||
&& musicInfo.TryGetValue(player.Team, out var musicId)
|
||||
&& musicId != 0))
|
||||
return HookResult.Continue;
|
||||
|
||||
@event.Musickitid = musicId;
|
||||
@event.Nomusic = 0;
|
||||
info.DontBroadcast = true;
|
||||
|
||||
var newEvent = new EventRoundMvp(true)
|
||||
{
|
||||
Userid = player,
|
||||
Musickitid = musicId,
|
||||
Nomusic = 0,
|
||||
};
|
||||
|
||||
_mvpPlayed = true;
|
||||
|
||||
newEvent.FireEvent(false);
|
||||
return HookResult.Continue;
|
||||
}
|
||||
|
||||
@@ -165,7 +205,17 @@ namespace WeaponPaints
|
||||
|
||||
var player = GetPlayerFromItemServices(itemServices);
|
||||
if (player != null)
|
||||
{
|
||||
var weaponServices = player.PlayerPawn.Value?.WeaponServices;
|
||||
|
||||
GivePlayerWeaponSkin(player, weapon);
|
||||
|
||||
if (weaponServices is { MyWeapons.Count: 1 })
|
||||
{
|
||||
// player.GiveNamedItem(CsItem.Healthshot);
|
||||
// newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.1f);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
@@ -222,9 +272,8 @@ namespace WeaponPaints
|
||||
if (!Config.Additional.ShowSkinImage) return;
|
||||
|
||||
foreach (var player in Utilities.GetPlayers().Where(p =>
|
||||
p is { IsValid: true, PlayerPawn.IsValid: true } &&
|
||||
(LifeState_t)p.LifeState == LifeState_t.LIFE_ALIVE
|
||||
&& !p.IsBot && p is { Connected: PlayerConnectedState.PlayerConnected }
|
||||
p is { IsValid: true, PlayerPawn.IsValid: true, IsBot: false } and
|
||||
{ Connected: PlayerConnectedState.PlayerConnected }
|
||||
)
|
||||
)
|
||||
{
|
||||
@@ -238,9 +287,10 @@ namespace WeaponPaints
|
||||
[GameEventHandler]
|
||||
public HookResult OnItemPickup(EventItemPickup @event, GameEventInfo _)
|
||||
{
|
||||
if (!IsWindows) return HookResult.Continue;
|
||||
|
||||
// if (!IsWindows) return HookResult.Continue;
|
||||
var player = @event.Userid;
|
||||
if (!@event.Item.Contains("knife")) return HookResult.Continue;
|
||||
|
||||
if (player != null && player is { IsValid: true, Connected: PlayerConnectedState.PlayerConnected, PawnIsAlive: true, PlayerPawn.IsValid: true })
|
||||
{
|
||||
GiveOnItemPickup(player);
|
||||
@@ -252,11 +302,17 @@ namespace WeaponPaints
|
||||
private HookResult OnPlayerDeath(EventPlayerDeath @event, GameEventInfo info)
|
||||
{
|
||||
CCSPlayerController? player = @event.Attacker;
|
||||
CCSPlayerController? victim = @event.Userid;
|
||||
|
||||
if (player is null || !player.IsValid)
|
||||
return HookResult.Continue;
|
||||
|
||||
if (victim == null || !victim.IsValid || victim == player)
|
||||
return HookResult.Continue;
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out _)) return HookResult.Continue;
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamInfo) ||
|
||||
!teamInfo.TryGetValue(player.Team, out var teamWeapons) )
|
||||
return HookResult.Continue;
|
||||
|
||||
CBasePlayerWeapon? weapon = player.PlayerPawn.Value?.WeaponServices?.ActiveWeapon.Value;
|
||||
|
||||
@@ -264,7 +320,7 @@ namespace WeaponPaints
|
||||
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
|
||||
if (!GPlayerWeaponsInfo[player.Slot].TryGetValue(weaponDefIndex, out var weaponInfo) || weaponInfo.Paint == 0)
|
||||
if (!teamWeapons.TryGetValue(weaponDefIndex, out var weaponInfo) || weaponInfo.Paint == 0)
|
||||
return HookResult.Continue;
|
||||
|
||||
if (!weaponInfo.StatTrak) return HookResult.Continue;
|
||||
@@ -287,14 +343,14 @@ namespace WeaponPaints
|
||||
RegisterEventHandler<EventPlayerSpawn>(OnPlayerSpawn);
|
||||
RegisterEventHandler<EventRoundStart>(OnRoundStart);
|
||||
RegisterEventHandler<EventRoundEnd>(OnRoundEnd);
|
||||
RegisterEventHandler<EventRoundMvp>(OnRoundMvp);
|
||||
RegisterListener<Listeners.OnEntityCreated>(OnEntityCreated);
|
||||
RegisterEventHandler<EventPlayerDeath>(OnPlayerDeath);
|
||||
|
||||
if (Config.Additional.ShowSkinImage)
|
||||
RegisterListener<Listeners.OnTick>(OnTick);
|
||||
|
||||
if (!IsWindows)
|
||||
VirtualFunctions.GiveNamedItemFunc.Hook(OnGiveNamedItemPost, HookMode.Post);
|
||||
VirtualFunctions.GiveNamedItemFunc.Hook(OnGiveNamedItemPost, HookMode.Post);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -17,6 +17,8 @@ Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin
|
||||
- Added command **`!knife`** to show menu with knives
|
||||
- Added command **`!gloves`** to show menu with gloves
|
||||
- Added command **`!agents`** to show menu with agents
|
||||
- Added command **`!pins`** to show menu with pins
|
||||
- Added command **`!music`** to show menu with music
|
||||
- Translations support, submit a PR if you want to share your translation
|
||||
|
||||
## ⚙️ Requirements
|
||||
|
||||
156
Utility.cs
156
Utility.cs
@@ -1,6 +1,8 @@
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Translations;
|
||||
using CounterStrikeSharp.API.Modules.Menu;
|
||||
using Dapper;
|
||||
using MenuManager;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
@@ -18,65 +20,71 @@ namespace WeaponPaints
|
||||
try
|
||||
{
|
||||
await using var connection = await WeaponPaints.Database.GetConnectionAsync();
|
||||
|
||||
await using var transaction = await connection.BeginTransactionAsync();
|
||||
|
||||
try
|
||||
{
|
||||
string[] createTableQueries =
|
||||
[
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_skins` (
|
||||
`steamid` varchar(18) 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,
|
||||
`weapon_stattrak_count` int(10) NOT NULL,
|
||||
`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'
|
||||
) ENGINE=InnoDB
|
||||
""",
|
||||
@"CREATE TABLE IF NOT EXISTS `wp_player_knife` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`knife` varchar(64) NOT NULL,
|
||||
UNIQUE (`steamid`)
|
||||
) ENGINE = InnoDB",
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_gloves` (
|
||||
`steamid` varchar(18) NOT NULL,
|
||||
`weapon_defindex` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`)
|
||||
) ENGINE=InnoDB
|
||||
""",
|
||||
"""
|
||||
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
|
||||
""",
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_music` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`music_id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`)
|
||||
) ENGINE=InnoDB
|
||||
""",
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS `wp_player_pins` (
|
||||
`steamid` varchar(64) NOT NULL,
|
||||
`id` int(11) NOT NULL,
|
||||
UNIQUE (`steamid`)
|
||||
) ENGINE=InnoDB
|
||||
""",
|
||||
@"
|
||||
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)
|
||||
@@ -118,6 +126,20 @@ namespace WeaponPaints
|
||||
logger?.LogError("Not found \"skins.json\" file");
|
||||
}
|
||||
}
|
||||
|
||||
internal static void LoadPinsFromFile(string filePath, ILogger logger)
|
||||
{
|
||||
var json = File.ReadAllText(filePath);
|
||||
try
|
||||
{
|
||||
var deserializedPins = JsonConvert.DeserializeObject<List<JObject>>(json);
|
||||
WeaponPaints.PinsList = deserializedPins ?? [];
|
||||
}
|
||||
catch (FileNotFoundException)
|
||||
{
|
||||
logger?.LogError("Not found \"pins.json\" file");
|
||||
}
|
||||
}
|
||||
|
||||
internal static void LoadGlovesFromFile(string filePath, ILogger logger)
|
||||
{
|
||||
@@ -168,10 +190,32 @@ namespace WeaponPaints
|
||||
Console.WriteLine("[WeaponPaints] " + message);
|
||||
Console.ResetColor();
|
||||
}
|
||||
|
||||
internal static string ReplaceTags(string message)
|
||||
|
||||
internal static IMenu? CreateMenu(string title)
|
||||
{
|
||||
return message.ReplaceColorTags();
|
||||
var menuType = WeaponPaints.Instance.Config.MenuType.ToLower();
|
||||
|
||||
var menu = menuType switch
|
||||
{
|
||||
_ when menuType.Equals("selectable", StringComparison.CurrentCultureIgnoreCase) =>
|
||||
WeaponPaints.MenuApi?.NewMenu(title),
|
||||
|
||||
_ when menuType.Equals("dynamic", StringComparison.CurrentCultureIgnoreCase) =>
|
||||
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ButtonMenu),
|
||||
|
||||
_ when menuType.Equals("center", StringComparison.CurrentCultureIgnoreCase) =>
|
||||
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.CenterMenu),
|
||||
|
||||
_ when menuType.Equals("chat", StringComparison.CurrentCultureIgnoreCase) =>
|
||||
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ChatMenu),
|
||||
|
||||
_ when menuType.Equals("console", StringComparison.CurrentCultureIgnoreCase) =>
|
||||
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ConsoleMenu),
|
||||
|
||||
_ => WeaponPaints.MenuApi?.NewMenu(title)
|
||||
};
|
||||
|
||||
return menu;
|
||||
}
|
||||
|
||||
internal static async Task CheckVersion(string version, ILogger logger)
|
||||
|
||||
19
Variables.cs
19
Variables.cs
@@ -3,6 +3,7 @@ using System.Runtime.InteropServices;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Capabilities;
|
||||
using CounterStrikeSharp.API.Modules.Memory.DynamicFunctions;
|
||||
using CounterStrikeSharp.API.Modules.Utils;
|
||||
using MenuManager;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Newtonsoft.Json.Linq;
|
||||
@@ -72,13 +73,15 @@ public partial class WeaponPaints
|
||||
};
|
||||
|
||||
public static IStringLocalizer? _localizer;
|
||||
internal static readonly ConcurrentDictionary<int, string> GPlayersKnife = new();
|
||||
internal static readonly ConcurrentDictionary<int, ushort> GPlayersGlove = new();
|
||||
internal static readonly ConcurrentDictionary<int, ushort> GPlayersMusic = new();
|
||||
internal static readonly ConcurrentDictionary<int, ushort> GPlayersPin = new();
|
||||
public static readonly ConcurrentDictionary<int, (string? CT, string? T)> GPlayersAgent = new();
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<int, WeaponInfo>> GPlayerWeaponsInfo = new();
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, string>> GPlayersKnife = new();
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersGlove = new();
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersMusic = new();
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersPin = new();
|
||||
internal static readonly ConcurrentDictionary<int, (string? CT, string? T)> GPlayersAgent = new();
|
||||
internal static readonly Dictionary<int, int> GPlayersKnivesPickup = [];
|
||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ConcurrentDictionary<int, WeaponInfo>>> GPlayerWeaponsInfo = new();
|
||||
internal static List<JObject> SkinsList = [];
|
||||
internal static List<JObject> PinsList = [];
|
||||
internal static List<JObject> GlovesList = [];
|
||||
internal static List<JObject> AgentsList = [];
|
||||
internal static List<JObject> MusicList = [];
|
||||
@@ -90,7 +93,7 @@ public partial class WeaponPaints
|
||||
internal static Database? Database;
|
||||
|
||||
private static readonly MemoryFunctionVoid<nint, string, float> CAttributeListSetOrAddAttributeValueByName = new(GameData.GetSignature("CAttributeList_SetOrAddAttributeValueByName"));
|
||||
|
||||
|
||||
private static readonly MemoryFunctionWithReturn<nint, string, int, int> SetBodygroupFunc = new(
|
||||
GameData.GetSignature("CBaseModelEntity_SetBodygroup"));
|
||||
|
||||
@@ -163,4 +166,6 @@ public partial class WeaponPaints
|
||||
|
||||
internal static IMenuApi? MenuApi;
|
||||
private static readonly PluginCapability<IMenuApi> MenuCapability = new("menu:nfcore");
|
||||
|
||||
private int _fadeSeed;
|
||||
}
|
||||
164
WeaponAction.cs
164
WeaponAction.cs
@@ -7,6 +7,7 @@ using CounterStrikeSharp.API.Modules.Utils;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Runtime.InteropServices;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace WeaponPaints
|
||||
{
|
||||
@@ -19,13 +20,14 @@ namespace WeaponPaints
|
||||
|
||||
bool isKnife = weapon.DesignerName.Contains("knife") || weapon.DesignerName.Contains("bayonet");
|
||||
|
||||
if (isKnife && !GPlayersKnife.ContainsKey(player.Slot) || isKnife && GPlayersKnife[player.Slot] == "weapon_knife") return;
|
||||
|
||||
int[] newPaints = { 106, 112, 113, 114, 115, 117, 118, 120, 121, 123, 126, 127, 128, 129, 130, 131, 133, 134, 137, 138, 139, 140, 142, 144, 145, 146, 152, 160, 161, 163, 173, 239, 292, 324, 331, 412, 461, 513, 766, 768, 770, 773, 774, 830, 831, 832, 834, 874, 875, 877, 878, 882, 883, 901, 912, 936, 937, 938, 939, 940, 1054, 1062, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1177, 1178, 1179, 1180 };
|
||||
if (isKnife && (!GPlayersKnife.ContainsKey(player.Slot) ||
|
||||
!GPlayersKnife[player.Slot].ContainsKey(player.Team) ||
|
||||
GPlayersKnife[player.Slot][player.Team] == "weapon_knife"))
|
||||
return;
|
||||
|
||||
if (isKnife)
|
||||
{
|
||||
var newDefIndex = WeaponDefindex.FirstOrDefault(x => x.Value == GPlayersKnife[player.Slot]);
|
||||
var newDefIndex = WeaponDefindex.FirstOrDefault(x => x.Value == GPlayersKnife[player.Slot][player.Team]);
|
||||
if (newDefIndex.Key == 0) return;
|
||||
|
||||
if (weapon.AttributeManager.Item.ItemDefinitionIndex != newDefIndex.Key)
|
||||
@@ -36,16 +38,25 @@ namespace WeaponPaints
|
||||
weapon.AttributeManager.Item.ItemDefinitionIndex = (ushort)newDefIndex.Key;
|
||||
weapon.AttributeManager.Item.EntityQuality = 3;
|
||||
}
|
||||
else
|
||||
{
|
||||
weapon.AttributeManager.Item.EntityQuality = 0;
|
||||
}
|
||||
|
||||
UpdatePlayerEconItemId(weapon.AttributeManager.Item);
|
||||
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
int fallbackPaintKit = 0;
|
||||
int fallbackPaintKit;
|
||||
|
||||
weapon.AttributeManager.Item.AccountID = (uint)player.SteamID;
|
||||
|
||||
List<JObject> skinInfo;
|
||||
bool isLegacyModel;
|
||||
|
||||
if (_config.Additional.GiveRandomSkin &&
|
||||
!GPlayerWeaponsInfo[player.Slot].ContainsKey(weaponDefIndex))
|
||||
GPlayerWeaponsInfo.ContainsKey(player.Slot) &&
|
||||
(!GPlayerWeaponsInfo[player.Slot].ContainsKey(player.Team) ||
|
||||
!GPlayerWeaponsInfo[player.Slot][player.Team].ContainsKey(weaponDefIndex)))
|
||||
{
|
||||
// Random skins
|
||||
weapon.FallbackPaintKit = GetRandomPaint(weaponDefIndex);
|
||||
@@ -67,27 +78,44 @@ namespace WeaponPaints
|
||||
if (fallbackPaintKit == 0)
|
||||
return;
|
||||
|
||||
if (isKnife) return;
|
||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, !newPaints.Contains(fallbackPaintKit));
|
||||
skinInfo = SkinsList
|
||||
.Where(w =>
|
||||
w["weapon_defindex"]?.ToObject<int>() == weaponDefIndex &&
|
||||
w["paint"]?.ToObject<int>() == fallbackPaintKit)
|
||||
.ToList();
|
||||
|
||||
isLegacyModel = skinInfo.Count <= 0 || skinInfo[0].Value<bool>("legacy_model");
|
||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, isLegacyModel);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!GPlayerWeaponsInfo[player.Slot].TryGetValue(weaponDefIndex, out var value) || value.Paint == 0) return;
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamInfo) ||
|
||||
!teamInfo.TryGetValue(player.Team, out var teamWeapons) )
|
||||
return;
|
||||
if (!teamWeapons.TryGetValue(weaponDefIndex, out var value))
|
||||
return;
|
||||
|
||||
var weaponInfo = value;
|
||||
//Log($"Apply on {weapon.DesignerName}({weapon.AttributeManager.Item.ItemDefinitionIndex}) paint {gPlayerWeaponPaints[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} seed {gPlayerWeaponSeed[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} wear {gPlayerWeaponWear[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]}");
|
||||
|
||||
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;
|
||||
weapon.AttributeManager.Item.CustomName = weaponInfo.Nametag;
|
||||
weapon.FallbackPaintKit = weaponInfo.Paint;
|
||||
weapon.FallbackSeed = weaponInfo.Seed;
|
||||
|
||||
weapon.FallbackSeed = weaponInfo is { Paint: 38, Seed: 0 } ? _fadeSeed++ : weaponInfo.Seed;
|
||||
|
||||
weapon.FallbackWear = weaponInfo.Wear;
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture prefab", weapon.FallbackPaintKit);
|
||||
|
||||
if (weaponInfo.StatTrak)
|
||||
{
|
||||
{
|
||||
weapon.AttributeManager.Item.EntityQuality = 9;
|
||||
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater", ViewAsFloat((uint)weaponInfo.StatTrakCount));
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater score type", 0);
|
||||
|
||||
@@ -100,12 +128,18 @@ namespace WeaponPaints
|
||||
if (fallbackPaintKit == 0)
|
||||
return;
|
||||
|
||||
if (isKnife) return;
|
||||
|
||||
if (weaponInfo.Stickers.Count > 0) SetStickers(player, weapon);
|
||||
if (weaponInfo.KeyChain != null) SetKeychain(player, weapon);
|
||||
if (weaponInfo.Stickers.Count > 0) SetStickers(player, weapon);
|
||||
|
||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, !newPaints.Contains(fallbackPaintKit));
|
||||
skinInfo = SkinsList
|
||||
.Where(w =>
|
||||
w["weapon_defindex"]?.ToObject<int>() == weaponDefIndex &&
|
||||
w["paint"]?.ToObject<int>() == fallbackPaintKit)
|
||||
.ToList();
|
||||
|
||||
isLegacyModel = skinInfo.Count <= 0 || skinInfo[0].Value<bool>("legacy_model");
|
||||
|
||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, isLegacyModel);
|
||||
}
|
||||
|
||||
// silly method to update sticker when call RefreshWeapons()
|
||||
@@ -113,7 +147,8 @@ namespace WeaponPaints
|
||||
{
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeapons) ||
|
||||
!playerWeapons.TryGetValue(weaponDefIndex, out var weaponInfo) ||
|
||||
!playerWeapons.TryGetValue(player.Team, out var weaponInfoDict) ||
|
||||
!weaponInfoDict.TryGetValue(weaponDefIndex, out var weaponInfo) ||
|
||||
weaponInfo.Stickers.Count <= 0) return;
|
||||
|
||||
float wearIncrement = 0.001f;
|
||||
@@ -137,7 +172,7 @@ namespace WeaponPaints
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeapons) ||
|
||||
!playerWeapons.TryGetValue(weaponDefIndex, out var weaponInfo))
|
||||
!playerWeapons[player.Team].TryGetValue(weaponDefIndex, out var weaponInfo))
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -145,11 +180,12 @@ 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));
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} schema", sticker.Schema);
|
||||
if (sticker.OffsetX != 0 || sticker.OffsetY != 0)
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} schema", 0);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} offset x", sticker.OffsetX);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
@@ -161,7 +197,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))
|
||||
{
|
||||
@@ -176,8 +212,11 @@ namespace WeaponPaints
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeaponsInfo) ||
|
||||
!playerWeaponsInfo.TryGetValue(weaponDefIndex, out var value) ||
|
||||
value.KeyChain == null) return;
|
||||
!playerWeaponsInfo.TryGetValue(player.Team, out var teamWeaponsInfo) ||
|
||||
!teamWeaponsInfo.TryGetValue(weaponDefIndex, out var value) ||
|
||||
value.KeyChain == null)
|
||||
return;
|
||||
|
||||
var keyChain = value.KeyChain;
|
||||
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
@@ -200,6 +239,7 @@ namespace WeaponPaints
|
||||
|
||||
//string knifeToGive = (CsTeam)player.TeamNum == CsTeam.Terrorist ? "weapon_knife_t" : "weapon_knife";
|
||||
player.GiveNamedItem(CsItem.Knife);
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
}
|
||||
|
||||
private static bool PlayerHasKnife(CCSPlayerController? player)
|
||||
@@ -242,8 +282,8 @@ namespace WeaponPaints
|
||||
if (player.Team is CsTeam.None or CsTeam.Spectator)
|
||||
return;
|
||||
|
||||
int playerTeam = player.TeamNum;
|
||||
|
||||
var hasKnife = false;
|
||||
|
||||
Dictionary<string, List<(int, int)>> weaponsWithAmmo = [];
|
||||
|
||||
foreach (var weapon in weapons)
|
||||
@@ -251,7 +291,7 @@ namespace WeaponPaints
|
||||
if (!weapon.IsValid || weapon.Value == null ||
|
||||
!weapon.Value.IsValid || !weapon.Value.DesignerName.Contains("weapon_"))
|
||||
continue;
|
||||
|
||||
|
||||
CCSWeaponBaseGun gun = weapon.Value.As<CCSWeaponBaseGun>();
|
||||
|
||||
if (weapon.Value.Entity == null) continue;
|
||||
@@ -290,6 +330,7 @@ namespace WeaponPaints
|
||||
if (weaponData.GearSlot == gear_slot_t.GEAR_SLOT_KNIFE)
|
||||
{
|
||||
weapon.Value?.AddEntityIOEvent("Kill", weapon.Value, null, "", 0.1f);
|
||||
hasKnife = true;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -301,9 +342,16 @@ namespace WeaponPaints
|
||||
AddTimer(0.23f, () =>
|
||||
{
|
||||
if (!_gBCommandsAllowed) return;
|
||||
|
||||
if (!PlayerHasKnife(player))
|
||||
GiveKnifeToPlayer(player);
|
||||
|
||||
if (!PlayerHasKnife(player) && hasKnife)
|
||||
{
|
||||
var newKnife = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.Knife));
|
||||
newKnife.AddEntityIOEvent("Kill", newKnife, null, "", 0.01f);
|
||||
var newWeapon = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.USP));
|
||||
player.GiveNamedItem(CsItem.Knife);
|
||||
player.ExecuteClientCommand("slot3");
|
||||
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||
}
|
||||
|
||||
foreach (var entry in weaponsWithAmmo)
|
||||
{
|
||||
@@ -355,11 +403,15 @@ namespace WeaponPaints
|
||||
if (!player.PawnIsAlive)
|
||||
return;
|
||||
|
||||
if (!GPlayersGlove.TryGetValue(player.Slot, out var gloveInfo) || gloveInfo == 0) return;
|
||||
if (!GPlayersGlove.TryGetValue(player.Slot, out var gloveInfo) ||
|
||||
!gloveInfo.TryGetValue(player.Team, out var gloveId) ||
|
||||
gloveId == 0 ||
|
||||
!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeaponsInfo) ||
|
||||
!playerWeaponsInfo.TryGetValue(player.Team, out var teamWeaponsInfo) ||
|
||||
!teamWeaponsInfo.TryGetValue(gloveId, out var weaponInfo))
|
||||
return;
|
||||
|
||||
WeaponInfo weaponInfo = GPlayerWeaponsInfo[player.Slot][gloveInfo];
|
||||
|
||||
item.ItemDefinitionIndex = gloveInfo;
|
||||
item.ItemDefinitionIndex = gloveId;
|
||||
item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
||||
item.ItemIDHigh = 16384;
|
||||
|
||||
@@ -421,6 +473,7 @@ namespace WeaponPaints
|
||||
var viewModel = GetPlayerViewModel(player);
|
||||
if (viewModel == null || viewModel.Weapon.Value == null ||
|
||||
viewModel.Weapon.Value.Index != weapon.Index) return;
|
||||
|
||||
UpdateWeaponMeshGroupMask(viewModel, isLegacy);
|
||||
Utilities.SetStateChanged(viewModel, "CBaseEntity", "m_CBodyComponent");
|
||||
}
|
||||
@@ -451,26 +504,30 @@ namespace WeaponPaints
|
||||
|
||||
private static void GivePlayerMusicKit(CCSPlayerController player)
|
||||
{
|
||||
if (!GPlayersMusic.TryGetValue(player.Slot, out var value)) return;
|
||||
if (player.InventoryServices == null) return;
|
||||
if (player.IsBot) return;
|
||||
if (!GPlayersMusic.TryGetValue(player.Slot, out var musicInfo) ||
|
||||
!musicInfo.TryGetValue(player.Team, out var musicId) || musicId == 0) return;
|
||||
|
||||
player.InventoryServices.MusicID = value;
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
player.MusicKitID = value;
|
||||
if (player.InventoryServices == null) return;
|
||||
|
||||
player.MusicKitID = musicId;
|
||||
// player.MvpNoMusic = false;
|
||||
player.InventoryServices.MusicID = musicId;
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_iMusicKitID");
|
||||
// Utilities.SetStateChanged(player, "CCSPlayerController", "m_bMvpNoMusic");
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
// player.MusicKitMVPs = musicId;
|
||||
// Utilities.SetStateChanged(player, "CCSPlayerController", "m_iMusicKitMVPs");
|
||||
}
|
||||
|
||||
private static void GivePlayerPin(CCSPlayerController player)
|
||||
{
|
||||
if (!GPlayersPin.TryGetValue(player.Slot, out var pin)) return;
|
||||
|
||||
if (!GPlayersPin.TryGetValue(player.Slot, out var pinInfo) ||
|
||||
!pinInfo.TryGetValue(player.Team, out var pinId)) return;
|
||||
if (player.InventoryServices == null) return;
|
||||
|
||||
for (var index = 0; index < player.InventoryServices.Rank.Length; index++)
|
||||
{
|
||||
player.InventoryServices.Rank[index] = index == 5 ? (MedalRank_t)pin : MedalRank_t.MEDAL_RANK_NONE;
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
}
|
||||
|
||||
player.InventoryServices.Rank[5] = pinId > 0 ? (MedalRank_t)pinId : MedalRank_t.MEDAL_RANK_NONE;
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
}
|
||||
|
||||
private void GiveOnItemPickup(CCSPlayerController player)
|
||||
@@ -480,21 +537,30 @@ namespace WeaponPaints
|
||||
|
||||
var myWeapons = pawn.WeaponServices?.MyWeapons;
|
||||
if (myWeapons == null) return;
|
||||
|
||||
foreach (var handle in myWeapons)
|
||||
{
|
||||
var weapon = handle.Value;
|
||||
if (weapon != null && weapon.DesignerName.Contains("knife"))
|
||||
|
||||
if (weapon == null || !weapon.IsValid) continue;
|
||||
if (myWeapons.Count == 1)
|
||||
{
|
||||
GivePlayerWeaponSkin(player, weapon);
|
||||
var newWeapon = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.USP));
|
||||
weapon.AddEntityIOEvent("Kill", weapon, null, "", 0.01f);
|
||||
player.GiveNamedItem(CsItem.Knife);
|
||||
player.ExecuteClientCommand("slot3");
|
||||
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||
}
|
||||
|
||||
GivePlayerWeaponSkin(player, weapon);
|
||||
}
|
||||
}
|
||||
|
||||
private void UpdatePlayerEconItemId(CEconItemView econItemView)
|
||||
{
|
||||
var itemId = _nextItemId++;
|
||||
|
||||
econItemView.ItemID = itemId;
|
||||
|
||||
econItemView.ItemIDLow = (uint)itemId & 0xFFFFFFFF;
|
||||
econItemView.ItemIDHigh = (uint)itemId >> 32;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
public int Seed { get; set; }
|
||||
public float Wear { get; set; }
|
||||
public string Nametag { get; set; } = "";
|
||||
public bool StatTrak { get; set; } = false;
|
||||
public bool StatTrak { get; set; }
|
||||
public int StatTrakCount { get; set; }
|
||||
public KeyChainInfo? KeyChain { get; set; }
|
||||
public List<StickerInfo> Stickers { get; set; } = new();
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using CounterStrikeSharp.API;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Core.Attributes;
|
||||
using CounterStrikeSharp.API.Modules.Memory.DynamicFunctions;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using MySqlConnector;
|
||||
|
||||
@@ -16,7 +17,7 @@ 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 => "2.7a";
|
||||
public override string ModuleVersion => "3.1b";
|
||||
|
||||
public override void Load(bool hotReload)
|
||||
{
|
||||
@@ -25,19 +26,21 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
if (hotReload)
|
||||
{
|
||||
OnMapStart(string.Empty);
|
||||
|
||||
GPlayerWeaponsInfo.Clear();
|
||||
GPlayersKnife.Clear();
|
||||
GPlayersGlove.Clear();
|
||||
GPlayersAgent.Clear();
|
||||
GPlayersPin.Clear();
|
||||
GPlayersMusic.Clear();
|
||||
|
||||
foreach (var player in Enumerable
|
||||
.OfType<CCSPlayerController>(Utilities.GetPlayers().TakeWhile(player => WeaponSync != null))
|
||||
.OfType<CCSPlayerController>(Utilities.GetPlayers().TakeWhile(_ => WeaponSync != null))
|
||||
.Where(player => player.IsValid &&
|
||||
!string.IsNullOrEmpty(player.IpAddress) && player is
|
||||
{ IsBot: false, Connected: PlayerConnectedState.PlayerConnected }))
|
||||
{
|
||||
GPlayerWeaponsInfo.TryRemove(player.Slot, out _);
|
||||
GPlayersKnife.TryRemove(player.Slot, out _);
|
||||
GPlayersGlove.TryRemove(player.Slot, out _);
|
||||
GPlayersAgent.TryRemove(player.Slot, out _);
|
||||
GPlayersPin.TryRemove(player.Slot, out _);
|
||||
|
||||
GPlayersKnivesPickup[player.Slot] = 0;
|
||||
var playerInfo = new PlayerInfo
|
||||
{
|
||||
UserId = player.UserId,
|
||||
@@ -53,28 +56,15 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
if (WeaponSync != null) await WeaponSync.GetPlayerData(playerInfo);
|
||||
});
|
||||
}
|
||||
|
||||
AddTimer(2.0f, () => OnAllPluginsLoaded(hotReload));
|
||||
}
|
||||
|
||||
Utility.LoadSkinsFromFile(ModuleDirectory + $"/data/skins_{_config.SkinsLanguage}.json", Logger);
|
||||
Utility.LoadGlovesFromFile(ModuleDirectory + $"/data/gloves_{_config.SkinsLanguage}.json", Logger);
|
||||
Utility.LoadAgentsFromFile(ModuleDirectory + $"/data/agents_{_config.SkinsLanguage}.json", Logger);
|
||||
Utility.LoadMusicFromFile(ModuleDirectory + $"/data/music_{_config.SkinsLanguage}.json", Logger);
|
||||
|
||||
if (Config.Additional.KnifeEnabled)
|
||||
SetupKnifeMenu();
|
||||
if (Config.Additional.SkinEnabled)
|
||||
SetupSkinsMenu();
|
||||
if (Config.Additional.GloveEnabled)
|
||||
SetupGlovesMenu();
|
||||
if (Config.Additional.AgentEnabled)
|
||||
SetupAgentsMenu();
|
||||
if (Config.Additional.MusicEnabled)
|
||||
SetupMusicMenu();
|
||||
Utility.LoadPinsFromFile(ModuleDirectory + $"/data/collectibles_{_config.SkinsLanguage}.json", Logger);
|
||||
|
||||
RegisterListeners();
|
||||
RegisterCommands();
|
||||
}
|
||||
|
||||
public void OnConfigParsed(WeaponPaintsConfig config)
|
||||
@@ -122,6 +112,21 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
||||
try
|
||||
{
|
||||
MenuApi = MenuCapability.Get();
|
||||
|
||||
if (Config.Additional.KnifeEnabled)
|
||||
SetupKnifeMenu();
|
||||
if (Config.Additional.SkinEnabled)
|
||||
SetupSkinsMenu();
|
||||
if (Config.Additional.GloveEnabled)
|
||||
SetupGlovesMenu();
|
||||
if (Config.Additional.AgentEnabled)
|
||||
SetupAgentsMenu();
|
||||
if (Config.Additional.MusicEnabled)
|
||||
SetupMusicMenu();
|
||||
if (Config.Additional.PinsEnabled)
|
||||
SetupPinsMenu();
|
||||
|
||||
RegisterCommands();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Type {lime}!gloves{default} to open gloves menu",
|
||||
"wp_info_agent": "Type {lime}!agents{default} to open agents menu",
|
||||
"wp_info_music": "Type {lime}!music{default} to open music menu",
|
||||
"wp_info_pin": "Type {lime}!pins{default} to open pins menu",
|
||||
"wp_command_cooldown": "{lightred}You can't refresh weapon paints right now",
|
||||
"wp_command_refresh_done": "{lime}Refreshing weapon paints",
|
||||
"wp_knife_menu_select": "You have chosen {lime}{0}{default} as your knife",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Agents Menu",
|
||||
"wp_music_menu_title": "Music Menu",
|
||||
"wp_music_menu_select": "You have chosen {lime}{0}{default} as your music kit",
|
||||
"wp_pins_menu_title": "Pins Menu",
|
||||
"wp_pins_menu_select": "You have chosen {lime}{0}{default} as your pin",
|
||||
"wp_skin_menu_weapon_title": "Weapon Menu",
|
||||
"wp_skin_menu_skin_title": "Select skin for {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "You have chosen {lime}{0}{default} as your skin",
|
||||
|
||||
"wp_stattrak_action": "You have successfully changed the stattrak setting",
|
||||
|
||||
"None": "None"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Ievadiet {lime}!gloves{default}, lai atvērtu cimdi izvēlni",
|
||||
"wp_info_agent": "Ievadiet {lime}!agents{default}, lai atvērtu aģentu izvēlni",
|
||||
"wp_info_music": "Ievadiet {lime}!music{default}, lai atvērtu mūzikas izvēlni",
|
||||
"wp_info_pin": "Ierakstiet {lime}!pins{default}, lai atvērtu piespraudes izvēlni",
|
||||
"wp_command_cooldown": "{lightred}Šobrīd nevarat atsvaidzināt ieroča krāsas",
|
||||
"wp_command_refresh_done": "{lime}Atsvaidzinot ieroča krāsas",
|
||||
"wp_knife_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu nazi",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Aģentu Izvēlne",
|
||||
"wp_music_menu_title": "Mūzikas Izvēlne",
|
||||
"wp_music_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu mūzikas komplektu",
|
||||
"wp_pins_menu_title": "Piespraužu izvēlne",
|
||||
"wp_pins_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu piespraudi",
|
||||
"wp_skin_menu_weapon_title": "Ieroču Izvēlne",
|
||||
"wp_skin_menu_skin_title": "Izvēlieties ādu priekš {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu ādu",
|
||||
|
||||
|
||||
"wp_stattrak_action": "Jūs veiksmīgi mainījāt stattrak iestatījumu",
|
||||
|
||||
"None": "Nav"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Wpisz {lime}!gloves{default}, aby otworzyć menu rękawic",
|
||||
"wp_info_agent": "Wpisz {lime}!agents{default}, aby otworzyć menu agentów",
|
||||
"wp_info_music": "Wpisz {lime}!music{default}, aby otworzyć menu muzyczne",
|
||||
"wp_info_pin": "Wpisz {lime}!pins{default}, aby otworzyć menu pinów",
|
||||
"wp_command_cooldown": "{lightred}Nie możesz teraz odświeżyć kolorów broni",
|
||||
"wp_command_refresh_done": "{lime}Odświeżanie kolorów broni",
|
||||
"wp_knife_menu_select": "Wybrałeś {lime}{0}{default} jako swój nóż",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Menu Agentów",
|
||||
"wp_music_menu_title": "Menu Muzyczne",
|
||||
"wp_music_menu_select": "Wybrałeś {lime}{0}{default} jako swój zestaw muzyczny",
|
||||
"wp_pins_menu_title": "Menu Pinów",
|
||||
"wp_pins_menu_select": "Wybrałeś {lime}{0}{default} jako swój pin",
|
||||
"wp_skin_menu_weapon_title": "Menu Broni",
|
||||
"wp_skin_menu_skin_title": "Wybierz skórkę dla {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Wybrałeś {lime}{0}{default} jako swoją skórkę",
|
||||
|
||||
"wp_stattrak_action": "Pomyślnie zmieniłeś ustawienie stattraka",
|
||||
|
||||
"None": "Brak"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Digite {lime}!gloves{default} para abrir o menu de luvas",
|
||||
"wp_info_agent": "Digite {lime}!agents{default} para abrir o menu de agentes",
|
||||
"wp_info_music": "Digite {lime}!music{default} para abrir o menu de música",
|
||||
"wp_info_pin": "Digite {lime}!pins{default} para abrir o menu de pins",
|
||||
"wp_command_cooldown": "{lightred}Você não pode atualizar as skins de armas agora",
|
||||
"wp_command_refresh_done": "{lime}Atualizando as skins de armas",
|
||||
"wp_knife_menu_select": "Você escolheu {lime}{0}{default} como sua faca",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Menu de Agentes",
|
||||
"wp_music_menu_title": "Menu de Música",
|
||||
"wp_music_menu_select": "Você escolheu {lime}{0}{default} como seu kit de música",
|
||||
"wp_pins_menu_title": "Menu de Pins",
|
||||
"wp_pins_menu_select": "Escolheu {lime}{0}{default} como o seu pin",
|
||||
"wp_skin_menu_weapon_title": "Menu de Armas",
|
||||
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Você escolheu {lime}{0}{default} como sua skin",
|
||||
|
||||
"wp_stattrak_action": "Você alterou a configuração de stattrak com sucesso",
|
||||
|
||||
"None": "Nenhum"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Digite {lime}!gloves{default} para abrir o menu de luvas",
|
||||
"wp_info_agent": "Digite {lime}!agents{default} para abrir o menu de agentes",
|
||||
"wp_info_music": "Digite {lime}!music{default} para abrir o menu de música",
|
||||
"wp_info_pin": "Escreva {lime}!pins{default} para abrir o menu de pins",
|
||||
"wp_command_cooldown": "{lightred}Não pode atualizar as skins de armas de momento",
|
||||
"wp_command_refresh_done": "{lime}Atualizando as skins de armas",
|
||||
"wp_knife_menu_select": "Escolheu {lime}{0}{default} como a sua faca",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Menu de Agentes",
|
||||
"wp_music_menu_title": "Menu de Música",
|
||||
"wp_music_menu_select": "Escolheu {lime}{0}{default} como o seu kit de música",
|
||||
"wp_pins_menu_title": "Menu de Pins",
|
||||
"wp_pins_menu_select": "Escolheu {lime}{0}{default} como o seu pin",
|
||||
"wp_skin_menu_weapon_title": "Menu de Armas",
|
||||
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Escolheu {lime}{0}{default} como a sua skin",
|
||||
|
||||
"wp_stattrak_action": "Alterou com sucesso a configuração do stattrak",
|
||||
|
||||
"None": "Nenhum"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Введите {lime}!gloves{default}, чтобы открыть меню перчаток",
|
||||
"wp_info_agent": "Введите {lime}!agents{default}, чтобы открыть меню агентов",
|
||||
"wp_info_music": "Введите {lime}!music{default}, чтобы открыть меню музыки",
|
||||
"wp_info_pin": "Введите {lime}!pins{default}, чтобы открыть меню пинов",
|
||||
"wp_command_cooldown": "{lightred}Вы не можете обновить раскраску оружия сейчас",
|
||||
"wp_command_refresh_done": "{lime}Обновление раскраски оружия",
|
||||
"wp_knife_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего ножа",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Меню Агентов",
|
||||
"wp_music_menu_title": "Меню Музыки",
|
||||
"wp_music_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего музыкального набора",
|
||||
"wp_pins_menu_title": "Меню пинов",
|
||||
"wp_pins_menu_select": "Вы выбрали {lime}{0}{default} в качестве своего пина",
|
||||
"wp_skin_menu_weapon_title": "Меню Оружия",
|
||||
"wp_skin_menu_skin_title": "Выберите скин для {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего скина",
|
||||
|
||||
"wp_stattrak_action": "Вы успешно изменили настройки статтрак",
|
||||
|
||||
"None": "Нет"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Handskar menüsünü açmak için {lime}!gloves{default} yazın",
|
||||
"wp_info_agent": "Ajan menüsünü açmak için {lime}!agents{default} yazın",
|
||||
"wp_info_music": "Müzik menüsünü açmak için {lime}!music{default} yazın",
|
||||
"wp_info_pin": "{lime}!pins{default} yazarak pinler menüsünü açın",
|
||||
"wp_command_cooldown": "{lightred}Şu anda silah boyalarını yenileyemezsiniz",
|
||||
"wp_command_refresh_done": "{lime}Silah boyaları yenileniyor",
|
||||
"wp_knife_menu_select": "{lime}{0}{default} olarak bıçağınızı seçtiniz",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Ajanlar Menüsü",
|
||||
"wp_music_menu_title": "Müzik Menüsü",
|
||||
"wp_music_menu_select": "{lime}{0}{default} olarak müzik setinizi seçtiniz",
|
||||
"wp_pins_menu_title": "Pinler Menüsü",
|
||||
"wp_pins_menu_select": "{lime}{0}{default} pinini seçtiniz",
|
||||
"wp_skin_menu_weapon_title": "Silah Menüsü",
|
||||
"wp_skin_menu_skin_title": "{lime}{0}{default} için cilt seçin",
|
||||
"wp_skin_menu_select": "{lime}{0}{default} olarak cildinizi seçtiniz",
|
||||
|
||||
"wp_stattrak_action": "StatTrak ayarını başarıyla değiştirdiniz",
|
||||
|
||||
"None": "Hiçbiri"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "Введіть {lime}!gloves{default}, щоб відкрити меню рукавичок",
|
||||
"wp_info_agent": "Введіть {lime}!agents{default}, щоб відкрити меню агентів",
|
||||
"wp_info_music": "Введіть {lime}!music{default}, щоб відкрити меню музики",
|
||||
"wp_info_pin": "Введіть {lime}!pins{default}, щоб відкрити меню пінів",
|
||||
"wp_command_cooldown": "{lightred}Ви не можете оновити фарби зброї зараз",
|
||||
"wp_command_refresh_done": "{lime}Оновлення фарби зброї",
|
||||
"wp_knife_menu_select": "Ви обрали {lime}{0}{default} як свій ніж",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "Меню Агентів",
|
||||
"wp_music_menu_title": "Меню Музики",
|
||||
"wp_music_menu_select": "Ви обрали {lime}{0}{default} як свій набір музики",
|
||||
"wp_pins_menu_title": "Меню пінів",
|
||||
"wp_pins_menu_select": "Ви вибрали {lime}{0}{default} як свій пін",
|
||||
"wp_skin_menu_weapon_title": "Меню Зброї",
|
||||
"wp_skin_menu_skin_title": "Виберіть шкіру для {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Ви обрали {lime}{0}{default} як свою шкіру",
|
||||
|
||||
"wp_stattrak_action": "Ви успішно змінили налаштування статтрака",
|
||||
|
||||
"None": "Немає"
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"wp_info_glove": "输入 {lime}!gloves{default} 打开手套菜单",
|
||||
"wp_info_agent": "输入 {lime}!agents{default} 打开代理菜单",
|
||||
"wp_info_music": "输入 {lime}!music{default} 打开音乐菜单",
|
||||
"wp_info_pin": "输入 {lime}!pins{default} 来打开固定项菜单",
|
||||
"wp_command_cooldown": "{lightred}您现在无法刷新武器涂装",
|
||||
"wp_command_refresh_done": "{lime}正在刷新武器涂装",
|
||||
"wp_knife_menu_select": "您选择了 {lime}{0}{default} 作为您的刀具",
|
||||
@@ -17,9 +18,13 @@
|
||||
"wp_agent_menu_title": "代理菜单",
|
||||
"wp_music_menu_title": "音乐菜单",
|
||||
"wp_music_menu_select": "您选择了 {lime}{0}{default} 作为您的音乐包",
|
||||
"wp_pins_menu_title": "固定项菜单",
|
||||
"wp_pins_menu_select": "您已选择 {lime}{0}{default} 作为您的固定项",
|
||||
"wp_skin_menu_weapon_title": "武器菜单",
|
||||
"wp_skin_menu_skin_title": "选择 {lime}{0}{default} 的皮肤",
|
||||
"wp_skin_menu_select": "您选择了 {lime}{0}{default} 作为您的皮肤",
|
||||
|
||||
"wp_stattrak_action": "您已成功更改 StatTrak 设置",
|
||||
|
||||
"None": "无"
|
||||
}
|
||||
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
define('SKIN_LANGUAGE', 'skins_en');
|
||||
|
||||
define('DB_HOST', 'localhost');
|
||||
define('DB_PORT', '3306');
|
||||
define('DB_NAME', '');
|
||||
|
||||
@@ -4,7 +4,7 @@ class UtilsClass
|
||||
public static function skinsFromJson(): array
|
||||
{
|
||||
$skins = [];
|
||||
$json = json_decode(file_get_contents(__DIR__ . "/../data/skins.json"), true);
|
||||
$json = json_decode(file_get_contents(__DIR__ . "/../data/".SKIN_LANGUAGE.".json"), true);
|
||||
|
||||
foreach ($json as $skin) {
|
||||
$skins[(int) $skin['weapon_defindex']][(int) $skin['paint']] = [
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Жълти ивици"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Бродерия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Ръкавици „Счупен зъб“ | Смахнато"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Овъглени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Змийско ухапване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Бронзови"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Ръкавици „Хрътка“ | Партизански"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортни ръкавици | Свръхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортни ръкавици | Суша"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортни ръкавици | Кутията на Пандора"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортни ръкавици | Лабиринт от жив плет"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортни ръкавици | Амфибийно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортни ръкавици | Бронзово преобразуване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортни ръкавици | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортни ръкавици | Поквара"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортни ръкавици | Прашка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортни ръкавици | Едър дивеч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортни ръкавици | Ален шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортни ръкавици | Нощни"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Лунно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Пурпурно вплитане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Диамантена гърмяща змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралска змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Имперско каре"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Застигане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Състезателно зелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Резан „Червеният“"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Снежен леопард"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Кралицата ягуар"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Шофьорски ръкавици | Черна вратовръзка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Превръзки за ръце | Кожени"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Превръзки за ръце | Смърчова разпокъсана цифрова шарка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Превръзки за ръце | Клане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Превръзки за ръце | Пущинаци"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Превръзки за ръце | Кобалтови черепи"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Превръзки за ръце | Препечатване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Превръзки за ръце | Изолирбанд"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Превръзки за ръце | Дървовидно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Превръзки за ръце | Пустинен шемаг"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Превръзки за ръце | Жираф"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Превръзки за ръце | Боа удушвач"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Превръзки за ръце | ВНИМАНИЕ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Затъмнение"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Градинска мента"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Бум!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Освежаваща мента"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотористки ръкавици | БУФ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Костенурка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Полигон"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Финална линия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Задимяване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Кръвно налягане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотористки ръкавици | Командос от III рота"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Горска разпокъсана цифрова шарка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурно кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Изумрудена паяжина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Фундамент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Пурпурна паяжина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Едри сачми"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Избледняване"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Монголско"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Мраморно преливане"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Подполковник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Тигрово нападение"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Специализирани ръкавици | Полеви агент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Изумруденозелено"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Мангрово"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Гърмяща змия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Ръкавици „Хидра“ | Закалено"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportovní rukavice (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Řidičské rukavice (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Řidičské rukavice (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandáže (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Bandáže (★) | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandáže (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandáže (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Bandáže (★) | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Bandáže (★) | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandáže (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Bandáže (★) | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandáže (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandáže (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Bandáže (★) | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandáže (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorkářské rukavice (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Profesionální rukavice (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Extrémistické rukavice (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-handsker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-handsker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshandsker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshandsker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshandsker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshandsker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshandsker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshandsker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshandsker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshandsker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshandsker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshandsker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshandsker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshandsker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kørehandsker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kørehandsker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kørehandsker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kørehandsker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kørehandsker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kørehandsker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kørehandsker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kørehandsker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kørehandsker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kørehandsker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kørehandsker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kørehandsker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Håndbind (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Håndbind (★) | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Håndbind (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Håndbind (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Håndbind (★) | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Håndbind (★) | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Håndbind (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Håndbind (★) | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Håndbind (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Håndbind (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Håndbind (★) | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Håndbind (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorcykelhandsker (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Specialisthandsker (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Specialisthandsker (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialisthandsker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialisthandsker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialisthandsker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Specialisthandsker (★) | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialisthandsker (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Specialisthandsker (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Specialisthandsker (★) | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Specialisthandsker (★) | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialisthandsker (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-handsker (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Hydra-handsker (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-handsker (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-handsker (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Gelbgebändert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Nadelspitze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Zerbrochener-Reißzahn-Handschuhe (★) | Loser Kiefer"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Verkohlt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Schlangenbiss"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Brüniert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-Handschuhe (★) | Guerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Supraleiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Dürr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Pandoras Büchse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Heckenirrgarten"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Amphibisch"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Schleuder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Großwildjagd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Scharlachrote Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sporthandschuhe (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Mondgewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Konvoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Purpurnes Gewebe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Diamantenrücken"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Königsnatter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Kaiserliches Karo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Renn-Grün"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Rezan, der Rote"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schneeleopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Jaguarkönigin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Chauffeurshandschuhe (★) | Schwarze Fliege"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Handbandagen (★) | Leder"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Handbandagen (★) | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Handbandagen (★) | Metzelei"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Handbandagen (★) | Ödland"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Handbandagen (★) | Kobaltblaue Totenschädel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Handbandagen (★) | Aufdruck"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Handbandagen (★) | Klebeband"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Handbandagen (★) | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Handbandagen (★) | Wüsten-Kufiya"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Handbandagen (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Handbandagen (★) | Riesenschlange"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Handbandagen (★) | ACHTUNG!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Finsternis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Grüne Minze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Bumm!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Kühle Minze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | PENG!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Schildkröte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Ziellinie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Rauch"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | Blutdruck"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorradhandschuhe (★) | 3. Kommandokompanie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Wald-DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurner Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Smaragdgrünes Netz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Fundierung"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Purpurnes Netz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Schrot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Farbverlauf"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Marmorfärbung"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Tigerangriff"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spezialistenhandschuhe (★) | Außendienstmitarbeiter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Smaragd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Klapperschlange"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-Handschuhe (★) | Einsatzgehärtet"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Γάντια Broken Fang | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Γάντια Bloodhound | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Σπορ γάντια | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Σπορ γάντια | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Σπορ γάντια | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Σπορ γάντια | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Σπορ γάντια | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Σπορ γάντια | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Σπορ γάντια | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Σπορ γάντια | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Σπορ γάντια | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Σπορ γάντια | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Σπορ γάντια | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Σπορ γάντια | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Γάντια οδηγού | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Γάντια οδηγού | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Περιτυλίγματα χεριών | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Γάντια μηχανής | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Γάντια μηχανής | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Γάντια μηχανής | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Γάντια ειδικού | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Γάντια Hydra | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Γάντια Hydra | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Γάντια Hydra | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Γάντια Hydra | Case Hardened"
|
||||
}
|
||||
]
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con bandas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caza mayor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competición"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Vendas de cuero ★ | DDPAT pícea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Vendas de cuero ★ | Tierra yerma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cráneos de cobalto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Vendas de cuero ★ | Sobreimpresión"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Vendas de cuero ★ | Arbóreo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Vendas de cuero ★ | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guantes de motorista ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Guantes de motorista ★ | Hierbabuena"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guantes de motorista ★ | ¡Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guantes de motorista ★ | Menta fresca"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes de motorista ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes de motorista ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes de motorista ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Guantes de motorista ★ | Polígono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes de motorista ★ | Línea de meta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes de motorista ★ | Lanzando humo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes de motorista ★ | Presión sanguínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes de motorista ★ | 3.ª Compañía de Comandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guantes de especialista ★ | DDPAT boscoso"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guantes de especialista ★ | Telaraña esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Guantes de especialista ★ | Desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mármol desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Guantes de especialista ★ | Capitán de corbeta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Guantes de especialista ★ | Ataque de tigre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guantes Hydra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Guantes Hydra ★ | Manglar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guantes Hydra ★ | Cascabel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Con franjas amarillas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Punta de aguja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guantes Broken Fang ★ | Inestable"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Chamuscado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Mordedura de serpiente"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Bronceado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guantes Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guantes de deporte ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guantes de deporte ★ | Árido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guantes de deporte ★ | Caja de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guantes de deporte ★ | Laberinto de setos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guantes de deporte ★ | Anfibio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guantes de deporte ★ | Metamorfosis broncínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guantes de deporte ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guantes de deporte ★ | Antivicio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guantes de deporte ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guantes de deporte ★ | Cacería grande"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guantes de deporte ★ | Kufiya escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guantes de deporte ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guantes de conductor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guantes de conductor ★ | Entrelazado carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guantes de conductor ★ | Diamantino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guantes de conductor ★ | Serpiente rey"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guantes de conductor ★ | Tartán imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guantes de conductor ★ | Adelantamiento"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guantes de conductor ★ | Verde de competición"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guantes de conductor ★ | Rezan el Rojo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guantes de conductor ★ | Irbis"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guantes de conductor ★ | Reina jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guantes de conductor ★ | De punta en blanco"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cuero"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Vendas de cuero ★ | DDPAT de pícea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Vendas de cuero ★ | Masacre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Vendas de cuero ★ | Tierra yerma"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cráneos de cobalto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Vendas de cuero ★ | Sobreimpresión"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Vendas de cuero ★ | Cinta adhesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Vendas de cuero ★ | Arbóreo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Vendas de cuero ★ | Kufiya del desierto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Vendas de cuero ★ | Jirafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Vendas de cuero ★ | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Vendas de cuero ★ | ¡PRECAUCIÓN!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guantes para moto ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Guantes para moto ★ | Hierbabuena"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guantes para moto ★ | ¡Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guantes para moto ★ | Menta fresca"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guantes para moto ★ | ¡PLAS!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guantes para moto ★ | Tortuga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guantes para moto ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Guantes para moto ★ | Polígono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guantes para moto ★ | Línea de meta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guantes para moto ★ | Va humo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guantes para moto ★ | Presión sanguínea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guantes para moto ★ | 3.ª Compañía de Comandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guantes de especialista ★ | DDPAT de bosque"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guantes de especialista ★ | Kimono carmesí"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guantes de especialista ★ | Telaraña esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guantes de especialista ★ | Fundación"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guantes de especialista ★ | Tela escarlata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guantes de especialista ★ | Perdigón"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Guantes de especialista ★ | Desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guantes de especialista ★ | Mármol desteñido"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Guantes de especialista ★ | Teniente coronel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Guantes de especialista ★ | Ataque de tigre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guantes de especialista ★ | Agente de campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guantes Hydra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Guantes Hydra ★ | Manglar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guantes Hydra ★ | Cascabel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guantes Hydra ★ | Acero templado"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Keltajuovainen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Ristipisto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Katkennut torahammas -hanskat | Pitelemätön"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Hiiltynyt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Käärmeenpurema"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Pronssattu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Verikoira-hanskat | Sissi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Urheiluhanskat | Suprajohde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Urheiluhanskat | Aavikko"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pandoran lipas"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pensaslabyrintti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Urheiluhanskat | Maalle ja mereen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Urheiluhanskat | Pronssimorfi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Urheiluhanskat | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Urheiluhanskat | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Urheiluhanskat | Ritsa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Urheiluhanskat | Metsästäjä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Urheiluhanskat | Tulipunainen shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Urheiluhanskat | Yönmustat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Ajohanskat | Kuukudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Ajohanskat | Saattue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Ajohanskat | Verenpunainen kudos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Ajohanskat | Timanttiselkä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Ajohanskat | Kuningaskäärme"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Ajohanskat | Majesteettinen ruutukuosi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Ajohanskat | Ohitus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Ajohanskat | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Ajohanskat | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Ajohanskat | Lumileopardi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Ajohanskat | Jaguaarikuningatar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Ajohanskat | Smokki"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Käsisiteet | Nahka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Käsisiteet | Talvimaasto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Käsisiteet | Teurastus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Käsisiteet | Julma maa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Käsisiteet | Kobolttikallot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Käsisiteet | Printti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Käsisiteet | Ilmastointiteippi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Käsisiteet | Maastokuvioitu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Käsisiteet | Aavikko-shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Käsisiteet | Kirahvi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Käsisiteet | Kuristajakäärme"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Käsisiteet | VAARA!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Pimennys"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Viherminttu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | PAM!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Jääminttu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | PAM!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kilpikonnanvihreä"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Kuljettajanhanskat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Särmikäs"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Maaliviiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Savustaja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | Verenpaine"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moottoripyöräilyhanskat | 3. kommandokomppania"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Kesämaasto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Smaragdiseitti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Perusta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Verenpunainen seitti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Hauli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Häivytetty"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Moguli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Marmorihäivytys"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Komentajakapteeni"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Tiikeriraitainen"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Ammattilaishanskat | Kenttäagentti"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra-hanskat | Smaragdi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Hydra-hanskat | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra-hanskat | Kalkkaro"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-hanskat | Panssaripinta"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Rainette jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Point d'aiguille"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Gants Broken Fang (★) | Gueule béante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Calcination"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Morsure de serpent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Bronze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Gants Bloodhound (★) | Guérilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Gants de sport (★) | Supraconducteur"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Gants de sport (★) | Aride"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Gants de sport (★) | Boîte de Pandore"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Gants de sport (★) | Labyrinthe de haies"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Gants de sport (★) | Amphibie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Gants de sport (★) | Dendrobates auratus"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Gants de sport (★) | Oméga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Gants de sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Gants de sport (★) | Survivaliste"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Gants de sport (★) | Gros gibier"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Gants de sport (★) | Shemagh rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Gants de sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage lunaire"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Gants de pilote (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Gants de pilote (★) | Tissage pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Gants de pilote (★) | Diamantin"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Gants de pilote (★) | Serpent royal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Gants de pilote (★) | Tartan impérial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Gants de pilote (★) | Turbo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Gants de pilote (★) | Vert bolide"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Gants de pilote (★) | Rezan le rouge"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Gants de pilote (★) | Léopard des neiges"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Gants de pilote (★) | Reine jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Gants de pilote (★) | Smoking"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandages (★) | Cuir"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Bandages (★) | Bois numérique"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandages (★) | Carnage"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandages (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Bandages (★) | Crânes cobalt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Bandages (★) | Surimpression"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandages (★) | Ruban adhésif"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Bandages (★) | Arboricole"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandages (★) | Shemagh du désert"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandages (★) | Girafe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Bandages (★) | Constricteur"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandages (★) | ATTENTION !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Gants de moto (★) | Éclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Gants de moto (★) | Menthe verte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Gants de moto (★) | Boum !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Gants de moto (★) | Menthe fraîche"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Gants de moto (★) | POW !"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Gants de moto (★) | Tortue"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Gants de moto (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Gants de moto (★) | Polygones"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Gants de moto (★) | Ligne d'arrivée"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Gants de moto (★) | Pleins gaz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Gants de moto (★) | Hypertension"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Gants de moto (★) | 3ᵉ compagnie de commandos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Tempéré numérique"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Kimono pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Toile émeraude"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Fondation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Toile pourpre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Chevrotine"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Dégradé"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Moghol"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Dégradé de marbre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Lieutenant-commandant"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Attaque de tigre"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Gants de spécialiste (★) | Spécialiste du terrain"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Gants Hydra (★) | Émeraude"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Gants Hydra (★) | Palétuvier"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Gants Hydra (★) | Crotale"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Gants Hydra (★) | Cémenté"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Jáde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Sárga Csíkos"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Tűhegy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang kesztyűk (★) | Zavaros"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Elszenesedett"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Kígyómarás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Bronzosított"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Véreb-kesztyűk (★) | Gerilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Szupravezető"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Száraz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Pandóra Szelencéje"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Sövényútvesztő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Kétéltű"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bronz Alak"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Bűn"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Csúzli"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nagyvad"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Skarlát Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportkesztyűk (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hold-szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Konvoj"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Karmazsin Szövet"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Csörgőkígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Királysikló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Birodalmi Takaró"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Előzés"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Versenyzöld"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Vörös Rezan"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Hópárduc"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Jaguárkirálynő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Sofőrkesztyű (★) | Fekete Nyakkendő"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Kézkötések (★) | Bőr"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Kézkötések (★) | Lucfenyő DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Kézkötések (★) | Mészárlás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Kézkötések (★) | Terméketlen Vidék"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Kézkötések (★) | Kobalt Koponyák"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Kézkötések (★) | Felülnyomat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Kézkötések (★) | Szigszalag"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Kézkötések (★) | Fás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Kézkötések (★) | Sivatagi Shemagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Kézkötések (★) | Zsiráf"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Kézkötések (★) | Óriáskígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Kézkötések (★) | VIGYÁZAT!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fogyatkozás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fodormenta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Bumm!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Hűsítő Menta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | PUFF!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Teknős"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Fuvar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Sokszögháló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Célvonal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Kifüstölve"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | Vérnyomás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motoroskesztyűk (★) | 3. Kommandós Század"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Erdei DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Kimonó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Smaragdháló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Alapítvány"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Karmazsin Háló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Sörét"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Fakulás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Fakuló Márvány"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Főhadnagy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Tigriscsapás"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Specialista kesztyűk (★) | Terepi Ügynök"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Smaragdsikló"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Csörgőkígyó"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra kesztyűk (★) | Fémezett"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Guanti Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Guanti Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Guanti sportivi ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Guanti sportivi ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Guanti sportivi ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Guanti sportivi ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Guanti sportivi ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Guanti sportivi ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Guanti sportivi ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Guanti sportivi ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Guanti sportivi ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Guanti sportivi ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Guanti sportivi ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Guanti sportivi ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Guanti da autista ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Guanti da autista ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Guanti da autista ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Guanti da autista ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Guanti da autista ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Guanti da autista ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Guanti da autista ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Guanti da autista ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Guanti da autista ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Guanti da autista ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Guanti da autista ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Guanti da autista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Fasce per le mani ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Fasce per le mani ★ | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Fasce per le mani ★ | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Fasce per le mani ★ | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Fasce per le mani ★ | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Fasce per le mani ★ | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Fasce per le mani ★ | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Fasce per le mani ★ | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Fasce per le mani ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Fasce per le mani ★ | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Fasce per le mani ★ | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Fasce per le mani ★ | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Guanti da centauro ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Guanti da centauro ★ | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Guanti da centauro ★ | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Guanti da centauro ★ | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Guanti da centauro ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Guanti da centauro ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Guanti da centauro ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Guanti da centauro ★ | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Guanti da centauro ★ | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Guanti da centauro ★ | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Guanti da centauro ★ | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Guanti da centauro ★ | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Guanti dello specialista ★ | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Guanti Hydra ★ | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Guanti Hydra ★ | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Guanti Hydra ★ | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Guanti Hydra ★ | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound Gloves | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sport Gloves | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sport Gloves | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sport Gloves | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sport Gloves | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sport Gloves | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sport Gloves | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sport Gloves | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sport Gloves | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sport Gloves | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sport Gloves | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sport Gloves | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sport Gloves | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Driver Gloves | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Driver Gloves | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Driver Gloves | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Driver Gloves | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Driver Gloves | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Driver Gloves | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Driver Gloves | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Driver Gloves | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Driver Gloves | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Driver Gloves | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Driver Gloves | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Driver Gloves | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Hand Wraps | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Hand Wraps | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Hand Wraps | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Hand Wraps | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Hand Wraps | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Hand Wraps | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Hand Wraps | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Hand Wraps | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Hand Wraps | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Hand Wraps | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Hand Wraps | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Hand Wraps | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moto Gloves | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Moto Gloves | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Moto Gloves | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Moto Gloves | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto Gloves | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto Gloves | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto Gloves | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Moto Gloves | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Moto Gloves | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Moto Gloves | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Moto Gloves | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Moto Gloves | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Specialist Gloves | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Specialist Gloves | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialist Gloves | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialist Gloves | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialist Gloves | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Specialist Gloves | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialist Gloves | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialist Gloves | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Specialist Gloves | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Specialist Gloves | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialist Gloves | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra Gloves | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Hydra Gloves | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra Gloves | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra Gloves | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옥색"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 옐로우 밴드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 꽃 자수"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ 브로큰 팽 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 숯검댕이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 뱀가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 구리"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ 블러드하운드 장갑 | 게릴라"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 초전도체"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 불모의 땅"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 판도라의 상자"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 미로 정원"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 해저"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 브론즈 모프"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 오메가"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 바이스"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 슬링샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 대전투"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 진홍색 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ 스포츠 장갑 | 야행성"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ 운전용 장갑 | 달빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ 운전용 장갑 | 수송대"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ 운전용 장갑 | 선홍빛 직조"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ 운전용 장갑 | 방울뱀"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ 운전용 장갑 | 킹 스네이크"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ 운전용 장갑 | 왕실 격자 무늬"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ 운전용 장갑 | 추월"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레이싱 그린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ 운전용 장갑 | 레잔 더 레드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ 운전용 장갑 | 눈표범"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ 운전용 장갑 | 여왕 재규어"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ 운전용 장갑 | 검은 속박"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ 핸드랩 | 가죽"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ 핸드랩 | 전나무 디지털 위장"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ 핸드랩 | 살인마"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ 핸드랩 | 황무지"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ 핸드랩 | 코발트 해골"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ 핸드랩 | 중복 인쇄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ 핸드랩 | 접착 테이프"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ 핸드랩 | 밀리터리"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ 핸드랩 | 사막 쉬마그"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ 핸드랩 | 기린"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ 핸드랩 | 보아뱀"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ 핸드랩 | 주의!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 월식"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 스피어민트"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쾅!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쿨민트"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 쾅!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 거북이"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 수송"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 폴리곤"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 결승선"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 스모크 아웃"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 혈관"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ 자동차 경주 장갑 | 제3특전대"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ 전문가 장갑 | 숲 디지털 위장"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ 전문가 장갑 | 진홍색 기모노"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ 전문가 장갑 | 에메랄드 거미줄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ 전문가 장갑 | 기초"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ 전문가 장갑 | 붉은 거미줄"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ 전문가 장갑 | 벅샷"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ 전문가 장갑 | 흐릿함"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ 전문가 장갑 | 모글"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ 전문가 장갑 | 흐릿한 대리석"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ 전문가 장갑 | 소령"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ 전문가 장갑 | 호랑이의 기습"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ 전문가 장갑 | 현장 요원"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ 히드라 장갑 | 에메랄드"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ 히드라 장갑 | 맹그로브"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ 히드라 장갑 | 래틀러"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ 히드라 장갑 | 표면 강화"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang Gloves | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handschoenen | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandschoenen | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandschoenen | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandschoenen | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandschoenen | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandschoenen | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandschoenen | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandschoenen | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandschoenen | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandschoenen | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandschoenen | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandschoenen | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandschoenen | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Rijhandschoenen | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Rijhandschoenen | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Rijhandschoenen | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Rijhandschoenen | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Rijhandschoenen | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Rijhandschoenen | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Rijhandschoenen | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Rijhandschoenen | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Rijhandschoenen | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Rijhandschoenen | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Rijhandschoenen | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Rijhandschoenen | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Bandages | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Bandages | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Bandages | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Bandages | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Bandages | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Bandages | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Bandages | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Bandages | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Bandages | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Bandages | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Bandages | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Bandages | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Motorhandschoenen | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Motorhandschoenen | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Motorhandschoenen | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Motorhandschoenen | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Motorhandschoenen | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Motorhandschoenen | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Motorhandschoenen | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Motorhandschoenen | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Motorhandschoenen | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Motorhandschoenen | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Motorhandschoenen | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Motorhandschoenen | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Specialisthandschoenen | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydra-handschoenen | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Broken Fang-hansker (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Bloodhound-hansker (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Sportshansker (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Sportshansker (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Sportshansker (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Sportshansker (★) | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Sportshansker (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Sportshansker (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Sportshansker (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Sportshansker (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Sportshansker (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Sportshansker (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Sportshansker (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Sportshansker (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Kjørehansker (★) | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Kjørehansker (★) | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Kjørehansker (★) | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Kjørehansker (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Kjørehansker (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Kjørehansker (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Kjørehansker (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Kjørehansker (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Kjørehansker (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Kjørehansker (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Kjørehansker (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Kjørehansker (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Boksebandasje (★) | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Boksebandasje (★) | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Boksebandasje (★) | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Boksebandasje (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Boksebandasje (★) | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Boksebandasje (★) | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Boksebandasje (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Boksebandasje (★) | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Boksebandasje (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Boksebandasje (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Boksebandasje (★) | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Boksebandasje (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Motorsykkelhansker (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Spesialisthansker (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Spesialisthansker (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Spesialisthansker (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Spesialisthansker (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Spesialisthansker (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Spesialisthansker (★) | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Spesialisthansker (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Spesialisthansker (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Spesialisthansker (★) | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Spesialisthansker (★) | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Spesialisthansker (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Hydra-hansker (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Hydra-hansker (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Hydra-hansker (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Hydra-hansker (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Jadeit"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Żółtopasy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Haft krzyżykowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Rękawice Broken Fang (★) | Nieposkromiony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Osmalone"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Ukąszenie węża"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Brązowe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Rękawice Bloodhound (★) | Partyzantka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Nadprzewodnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Pustynne"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Puszka Pandory"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Labirynt ogrodowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Morskie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Brązowa przemiana"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Miotacz"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Wielka zwierzyna"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Szkarłatna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Rękawice sportowe (★) | Mrok"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Splot księżycowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Konwój"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Szkarłatny splot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Grzechotnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewski wąż"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królewska krata"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyprzedzanie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Wyścigowa zieleń"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Rezan Czerwony"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Irbis śnieżny"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Królowa jaguarów"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Rękawiczki samochodowe (★) | Strój galowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Skóra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Świerkowy DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Rzeź"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Badlandy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Kobaltowe czaszki"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Nadruk"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Taśma izolacyjna"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Leśne"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Pustynna kefija"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Żyrafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | Dusiciel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Bandaże bokserskie (★) | UWAGA!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Zaćmienie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Mięta zielona"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Orzeźwiająca mięta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | TRACH!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Żółw"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Wielokąt"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Linia mety"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Lecący dym"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | Ciśnienie tętnicze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Rękawice motocyklisty (★) | 3 Kompania Komandosów"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Leśny DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatne kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szmaragdowa sieć"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Podkład"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Szkarłatna sieć"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Loftka"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Gradient"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Mulda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Marmurkowy gradient"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Komandor podporucznik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Uderzenie tygrysa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Rękawice specjalistyczne (★) | Agent terenowy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Szmaragd"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Namorzyn"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Grzechotnik"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Rękawice Hydra (★) | Stal nawęglana"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Sapo amarelo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Bordado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas da Presa Quebrada ★ | Abocanhada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Carbonizada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Picada de Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Bronzeada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas do Cão de Caça ★ | Guerrilha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Supercondutora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Árida"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caixa de Pandora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Labirinto Vivo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Anfíbia"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Batráquio Bronzeado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Ômega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Vício"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Faquinha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Caça das Grandes"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Shemagh Escarlate"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Esportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Lunar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Comboio"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Entrelaçamento Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Escama Diamante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rei Cobra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Xadrez Imperial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Ultrapassante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Piloto Verde"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Rezan, o Vermelho"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Leopardo da Neve"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Onça Rainha"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Motorista ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas ★ | Couro"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Faixas ★ | Camuflagem Digital — Abeto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas ★ | Abate"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Faixas ★ | Terra Batida"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Faixas ★ | Caveiras de Cobalto"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Faixas ★ | Superimpressão"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas ★ | Fita Adesiva"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Faixas ★ | Arbórea"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas ★ | Shemagh Laranja"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas ★ | Girafa"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Faixas ★ | Constritora"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas ★ | CUIDADO!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Menta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Bum!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Hortelã"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Tartaruga"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Transporte"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Polígono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Linha de Chegada"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Fumacê"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Pressão Arterial"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclismo ★ | Companhia do 3º Comando"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Camuflagem Digital — Floresta"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Quimono Carmesim"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Teia Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Fundação"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Teia Rubra"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Bala de Caça"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Degradê"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mármore Desbotado"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Tenente-Comandante"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Ataque Felino"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Agente de Campo"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Esmeralda"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Manguezal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Cascavel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas da Hidra ★ | Aquecimento de Aço"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Luvas Broken Fang ★ | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Luvas Bloodhound ★ | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Luvas Desportivas ★ | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Luvas de Condutor ★ | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Luvas de Condutor ★ | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Faixas de Mão ★ | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Faixas de Mão ★ | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Faixas de Mão ★ | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Faixas de Mão ★ | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Faixas de Mão ★ | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Faixas de Mão ★ | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Faixas de Mão ★ | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Faixas de Mão ★ | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Faixas de Mão ★ | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Faixas de Mão ★ | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Faixas de Mão ★ | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Faixas de Mão ★ | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Luvas de Motociclista ★ | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Luvas de Especialista ★ | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Luvas Hydra ★ | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Luvas Hydra ★ | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Luvas Hydra ★ | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Luvas Hydra ★ | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "Mănuși Broken Fang (★) | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Carbonizat"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "Mănuși Bloodhound (★) | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "Mănuși sport (★) | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "Mănuși sport (★) | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "Mănuși sport (★) | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "Mănuși sport (★) | Labirint din gard viu"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "Mănuși sport (★) | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "Mănuși sport (★) | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "Mănuși sport (★) | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "Mănuși sport (★) | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "Mănuși sport (★) | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "Mănuși sport (★) | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "Mănuși sport (★) | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "Mănuși sport (★) | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură selenică"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "Mănuși de condus (★) | Convoi"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "Mănuși de condus (★) | Țesătură stacojie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "Mănuși de condus (★) | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "Mănuși de condus (★) | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "Mănuși de condus (★) | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "Mănuși de condus (★) | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "Mănuși de condus (★) | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "Mănuși de condus (★) | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "Mănuși de condus (★) | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "Mănuși de condus (★) | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "Mănuși de condus (★) | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Piele"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Spruce DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Măcel"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Cobalt Skulls"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "Feșe pentru mâini (★) | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Spearmint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Boom!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Polygon"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Finish Line"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Smoke Out"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | Blood Pressure"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "Mănuși de motociclist (★) | 3rd Commando Company"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Lt. Commander"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Tiger Strike"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "Mănuși de specialist (★) | Field Agent"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Emerald"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Mangrove"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "Mănuși Hydra (★) | Case Hardened"
|
||||
}
|
||||
]
|
||||
@@ -1 +1,440 @@
|
||||
[{"weapon_defindex":0,"paint":0,"image":"","paint_name":"Gloves | Default"}]
|
||||
[
|
||||
{
|
||||
"weapon_defindex": 0,
|
||||
"paint": 0,
|
||||
"image": "",
|
||||
"paint_name": "Gloves | Default"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10085",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10085.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Нефрит"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Жёлтые полосы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Остриё иглы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Перчатки «Сломанный клык» | Без тормозов"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Зола"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Укус змеи"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Бронза"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Перчатки «Бладхаунд» | Диверсант"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Спортивные перчатки | Сверхпроводник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Спортивные перчатки | Засуха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ящик Пандоры"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Спортивные перчатки | Живая изгородь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Спортивные перчатки | Амфибия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Спортивные перчатки | Окисление бронзы"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Спортивные перчатки | Омега"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Спортивные перчатки | Порок"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Спортивные перчатки | Мясник"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Спортивные перчатки | Крупная добыча"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Спортивные перчатки | Кровавый шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Спортивные перчатки | Ноктс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Водительские перчатки | Лунный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Водительские перчатки | Конвой"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Водительские перчатки | Багряный узор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Водительские перчатки | Гремучая змея"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Водительские перчатки | Королевский змей"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Водительские перчатки | Имперская клетка"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Водительские перчатки | Обгон"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Водительские перчатки | Гоночный зелёный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Водительские перчатки | Резан Красный"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Водительские перчатки | Снежный барс"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Водительские перчатки | Королева ягуаров"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Водительские перчатки | Чёрный галстук"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Обмотки рук | Кожа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Обмотки рук | Пиксельный камуфляж «Хвоя»"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10021",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10021.png",
|
||||
"paint_name": "★ Обмотки рук | Бойня"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Обмотки рук | Пустошь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Обмотки рук | Синие черепа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10054",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10054.png",
|
||||
"paint_name": "★ Обмотки рук | Оттиск"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Обмотки рук | Скотч"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Обмотки рук | Лес"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Обмотки рук | Пустынный шемах"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Обмотки рук | Жираф"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Обмотки рук | Удав"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Обмотки рук | ОСТОРОЖНО!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Затмение"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Мята"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10027",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10027.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Бах!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10028",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10028.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Мятная прохлада"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | БУХ!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Черепаха"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Транспорт"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Полигон"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10077",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10077.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Финишная линия"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10078",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10078.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Бросаю дымовую"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10079",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10079.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Кровяное давление"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10080",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10080.png",
|
||||
"paint_name": "★ Мотоциклетные перчатки | Третья рота коммандо"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10030",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10030.png",
|
||||
"paint_name": "★ Перчатки спецназа | Пиксельный камуфляж «Лес»"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавое кимоно"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Перчатки спецназа | Изумрудная сеть"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Перчатки спецназа | Основа"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Перчатки спецназа | Кровавая паутина"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Перчатки спецназа | Дробь"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Перчатки спецназа | Градиент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Перчатки спецназа | Покоритель гор"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Перчатки спецназа | Мраморный градиент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Перчатки спецназа | Капитан 3-го ранга"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10067",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10067.png",
|
||||
"paint_name": "★ Перчатки спецназа | Удар тигра"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10068",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10068.png",
|
||||
"paint_name": "★ Перчатки спецназа | Полевой агент"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10057",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10057.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Изумруд"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10058",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10058.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Мангры"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10059",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10059.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Гремучая змея"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Перчатки «Гидра» | Поверхностная закалка"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user