mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-18 18:49:21 +00:00
Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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 | ||
|
|
6ea0336814 | ||
|
|
52e8525117 | ||
|
|
22337b6c69 | ||
|
|
5b543fcd2c | ||
|
|
55702903ad | ||
|
|
c26093593f | ||
|
|
3af80fbe8f | ||
|
|
a521b63608 | ||
|
|
8d8b2c34c7 | ||
|
|
7dffaee088 | ||
|
|
ba04889a42 | ||
|
|
1e5ad85ad0 |
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
|
||||
|
||||
240
Commands.cs
240
Commands.cs
@@ -1,7 +1,10 @@
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using System.Collections.Concurrent;
|
||||
using CounterStrikeSharp.API;
|
||||
using CounterStrikeSharp.API.Core;
|
||||
using CounterStrikeSharp.API.Modules.Commands;
|
||||
using CounterStrikeSharp.API.Modules.Menu;
|
||||
using CounterStrikeSharp.API.Modules.Timers;
|
||||
using CounterStrikeSharp.API.Modules.Utils;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace WeaponPaints;
|
||||
@@ -104,6 +107,16 @@ public partial class WeaponPaints
|
||||
|
||||
private void RegisterCommands()
|
||||
{
|
||||
_config.Additional.CommandStattrak.ForEach(c =>
|
||||
{
|
||||
AddCommand($"css_{c}", "Stattrak toggle", (player, info) =>
|
||||
{
|
||||
if (!Utility.IsPlayerValid(player)) return;
|
||||
|
||||
OnCommandStattrak(player, info);
|
||||
});
|
||||
});
|
||||
|
||||
_config.Additional.CommandSkin.ForEach(c =>
|
||||
{
|
||||
AddCommand($"css_{c}", "Skins info", (player, info) =>
|
||||
@@ -136,6 +149,30 @@ public partial class WeaponPaints
|
||||
}
|
||||
}
|
||||
|
||||
private void OnCommandStattrak(CCSPlayerController? player, CommandInfo commandInfo)
|
||||
{
|
||||
if (player == null || !player.IsValid) return;
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamInfo) ||
|
||||
!teamInfo.TryGetValue(player.Team, out var teamWeapons) )
|
||||
return;
|
||||
|
||||
var weapon = player.PlayerPawn.Value?.WeaponServices?.ActiveWeapon.Value;
|
||||
|
||||
if (weapon == null || !weapon.IsValid)
|
||||
return;
|
||||
if (!teamWeapons.TryGetValue(weapon.AttributeManager.Item.ItemDefinitionIndex, out var teamWeapon))
|
||||
return;
|
||||
|
||||
teamWeapon.StatTrak = !teamWeapon.StatTrak;
|
||||
RefreshWeapons(player);
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_stattrak_action"]))
|
||||
{
|
||||
player.Print(Localizer["wp_stattrak_action"]);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetupKnifeMenu()
|
||||
{
|
||||
if (!Config.Additional.KnifeEnabled || !_gBCommandsAllowed) return;
|
||||
@@ -144,12 +181,17 @@ public partial class WeaponPaints
|
||||
.Where(pair => pair.Key.StartsWith("weapon_knife") || pair.Key.StartsWith("weapon_bayonet"))
|
||||
.ToDictionary(pair => pair.Key, pair => pair.Value);
|
||||
|
||||
var giveItemMenu = MenuApi?.NewMenu(Localizer["wp_knife_menu_title"]);
|
||||
var giveItemMenu = Utility.CreateMenu(Localizer["wp_knife_menu_title"]);
|
||||
|
||||
var handleGive = (CCSPlayerController player, ChatMenuOption option) =>
|
||||
{
|
||||
if (!Utility.IsPlayerValid(player)) return;
|
||||
|
||||
var playerKnives = GPlayersKnife.GetOrAdd(player.Slot, new ConcurrentDictionary<CsTeam, string>());
|
||||
var teamsToCheck = player.TeamNum < 2
|
||||
? new[] { CsTeam.Terrorist, CsTeam.CounterTerrorist }
|
||||
: [player.Team];
|
||||
|
||||
var knifeName = option.Text;
|
||||
var knifeKey = knivesOnly.FirstOrDefault(x => x.Value == knifeName).Key;
|
||||
if (string.IsNullOrEmpty(knifeKey)) return;
|
||||
@@ -172,14 +214,18 @@ public partial class WeaponPaints
|
||||
Name = player.PlayerName,
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
GPlayersKnife[player.Slot] = knifeKey;
|
||||
|
||||
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
// Attempt to get the existing knives
|
||||
playerKnives[team] = knifeKey;
|
||||
}
|
||||
|
||||
if (_gBCommandsAllowed && (LifeState_t)player.LifeState == LifeState_t.LIFE_ALIVE)
|
||||
RefreshWeapons(player);
|
||||
|
||||
if (WeaponSync != null)
|
||||
_ = Task.Run(async () => await WeaponSync.SyncKnifeToDatabase(playerInfo, knifeKey));
|
||||
_ = Task.Run(async () => await WeaponSync.SyncKnifeToDatabase(playerInfo, knifeKey, teamsToCheck));
|
||||
};
|
||||
foreach (var knifePair in knivesOnly)
|
||||
{
|
||||
@@ -219,7 +265,7 @@ public partial class WeaponPaints
|
||||
.Except([new KeyValuePair<string, string>("weapon_knife", "Default Knife")])
|
||||
.ToDictionary(kvp => kvp.Value, kvp => kvp.Key);
|
||||
|
||||
var weaponSelectionMenu = MenuApi?.NewMenu(Localizer["wp_skin_menu_weapon_title"]);
|
||||
var weaponSelectionMenu = Utility.CreateMenu(Localizer["wp_skin_menu_weapon_title"]);
|
||||
|
||||
// Function to handle skin selection for a specific weapon
|
||||
var handleWeaponSelection = (CCSPlayerController? player, ChatMenuOption option) =>
|
||||
@@ -229,20 +275,19 @@ public partial class WeaponPaints
|
||||
var selectedWeapon = option.Text;
|
||||
|
||||
if (!classNamesByWeapon.TryGetValue(selectedWeapon, out var selectedWeaponClassname)) return;
|
||||
var skinsForSelectedWeapon = SkinsList?.Where(skin =>
|
||||
var skinsForSelectedWeapon = SkinsList.Where(skin =>
|
||||
skin.TryGetValue("weapon_name", out var weaponName) &&
|
||||
weaponName?.ToString() == selectedWeaponClassname
|
||||
)?.ToList();
|
||||
|
||||
var skinSubMenu = MenuApi?.NewMenu(Localizer["wp_skin_menu_skin_title", selectedWeapon]);
|
||||
var skinSubMenu = Utility.CreateMenu(Localizer["wp_skin_menu_skin_title", selectedWeapon]);
|
||||
|
||||
// Function to handle skin selection for the chosen weapon
|
||||
var handleSkinSelection = (CCSPlayerController p, ChatMenuOption opt) =>
|
||||
{
|
||||
if (!Utility.IsPlayerValid(p)) return;
|
||||
|
||||
var steamId = p.SteamID.ToString();
|
||||
var firstSkin = SkinsList?.FirstOrDefault(skin =>
|
||||
var firstSkin = SkinsList.FirstOrDefault(skin =>
|
||||
{
|
||||
if (skin.TryGetValue("weapon_name", out var weaponName))
|
||||
{
|
||||
@@ -259,29 +304,38 @@ public partial class WeaponPaints
|
||||
!int.TryParse(weaponDefIndexObj.ToString(), out var weaponDefIndex) ||
|
||||
!int.TryParse(selectedPaintId, out var paintId)) return;
|
||||
{
|
||||
if (Config.Additional.ShowSkinImage && SkinsList != null)
|
||||
if (Config.Additional.ShowSkinImage)
|
||||
{
|
||||
var foundSkin = SkinsList.FirstOrDefault(skin =>
|
||||
((int?)skin?["weapon_defindex"] ?? 0) == weaponDefIndex &&
|
||||
((int?)skin?["paint"] ?? 0) == paintId &&
|
||||
skin?["image"] != null
|
||||
((int?)skin["weapon_defindex"] ?? 0) == weaponDefIndex &&
|
||||
((int?)skin["paint"] ?? 0) == paintId &&
|
||||
skin["image"] != null
|
||||
);
|
||||
var image = foundSkin?["image"]?.ToString() ?? "";
|
||||
_playerWeaponImage[p.Slot] = image;
|
||||
AddTimer(2.0f, () => _playerWeaponImage.Remove(p.Slot), CounterStrikeSharp.API.Modules.Timers.TimerFlags.STOP_ON_MAPCHANGE);
|
||||
AddTimer(2.0f, () => _playerWeaponImage.Remove(p.Slot), TimerFlags.STOP_ON_MAPCHANGE);
|
||||
}
|
||||
|
||||
p.Print(Localizer["wp_skin_menu_select", selectedSkin]);
|
||||
var playerSkins = GPlayerWeaponsInfo.GetOrAdd(p.Slot, new ConcurrentDictionary<CsTeam, ConcurrentDictionary<int, WeaponInfo>>());
|
||||
|
||||
if (!GPlayerWeaponsInfo[p.Slot].TryGetValue(weaponDefIndex, out var value))
|
||||
var teamsToCheck = p.TeamNum < 2
|
||||
? new[] { CsTeam.Terrorist, CsTeam.CounterTerrorist }
|
||||
: [p.Team];
|
||||
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
value = new WeaponInfo();
|
||||
GPlayerWeaponsInfo[p.Slot][weaponDefIndex] = value;
|
||||
}
|
||||
// Ensure there's an entry for the team in playerSkins
|
||||
var teamWeapons = playerSkins.GetOrAdd(team, _ => new ConcurrentDictionary<int, WeaponInfo>());
|
||||
|
||||
value.Paint = paintId;
|
||||
value.Wear = 0.01f;
|
||||
value.Seed = 0;
|
||||
// Attempt to get or add the existing WeaponInfo
|
||||
var value = teamWeapons.GetOrAdd(weaponDefIndex, _ => new WeaponInfo());
|
||||
|
||||
// Update the properties of WeaponInfo
|
||||
value.Paint = paintId;
|
||||
value.Wear = 0.01f;
|
||||
value.Seed = 0;
|
||||
}
|
||||
|
||||
PlayerInfo playerInfo = new PlayerInfo
|
||||
{
|
||||
@@ -362,7 +416,7 @@ public partial class WeaponPaints
|
||||
|
||||
private void SetupGlovesMenu()
|
||||
{
|
||||
var glovesSelectionMenu = MenuApi?.NewMenu(Localizer["wp_glove_menu_title"]);
|
||||
var glovesSelectionMenu = Utility.CreateMenu(Localizer["wp_glove_menu_title"]);
|
||||
if (glovesSelectionMenu == null) return;
|
||||
glovesSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||
|
||||
@@ -371,6 +425,11 @@ public partial class WeaponPaints
|
||||
if (!Utility.IsPlayerValid(player) || player is null) return;
|
||||
|
||||
var selectedPaintName = option.Text;
|
||||
|
||||
var playerGloves = GPlayersGlove.GetOrAdd(player.Slot, new ConcurrentDictionary<CsTeam, ushort>());
|
||||
var teamsToCheck = player.TeamNum < 2
|
||||
? new[] { CsTeam.Terrorist, CsTeam.CounterTerrorist }
|
||||
: [player.Team];
|
||||
|
||||
var selectedGlove = GlovesList.FirstOrDefault(g => g.ContainsKey("paint_name") && g["paint_name"]?.ToString() == selectedPaintName);
|
||||
var image = selectedGlove?["image"]?.ToString() ?? "";
|
||||
@@ -397,15 +456,32 @@ public partial class WeaponPaints
|
||||
|
||||
if (paint != 0)
|
||||
{
|
||||
GPlayersGlove[player.Slot] = (ushort)weaponDefindex;
|
||||
|
||||
if (!GPlayerWeaponsInfo[player.Slot].ContainsKey(weaponDefindex))
|
||||
// Ensure that player weapons info exists for the player
|
||||
if (!GPlayerWeaponsInfo.ContainsKey(player.Slot))
|
||||
{
|
||||
WeaponInfo weaponInfo = new()
|
||||
GPlayerWeaponsInfo[player.Slot] = new ConcurrentDictionary<CsTeam, ConcurrentDictionary<int, WeaponInfo>>();
|
||||
}
|
||||
|
||||
// Ensure teams are initialized
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
if (!GPlayerWeaponsInfo[player.Slot].ContainsKey(team))
|
||||
{
|
||||
Paint = paint
|
||||
};
|
||||
GPlayerWeaponsInfo[player.Slot][weaponDefindex] = weaponInfo;
|
||||
GPlayerWeaponsInfo[player.Slot][team] = new ConcurrentDictionary<int, WeaponInfo>();
|
||||
}
|
||||
|
||||
// Update the glove for the player in the specified team
|
||||
playerGloves[team] = (ushort)weaponDefindex;
|
||||
|
||||
// Check if the glove information already exists for the player
|
||||
if (!GPlayerWeaponsInfo[player.Slot][team].ContainsKey(weaponDefindex))
|
||||
{
|
||||
WeaponInfo weaponInfo = new()
|
||||
{
|
||||
Paint = paint
|
||||
};
|
||||
GPlayerWeaponsInfo[player.Slot][team][weaponDefindex] = weaponInfo;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -413,28 +489,30 @@ public partial class WeaponPaints
|
||||
GPlayersGlove.TryRemove(player.Slot, out _);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_glove_menu_select"]))
|
||||
{
|
||||
player.Print(Localizer["wp_glove_menu_select", selectedPaintName]);
|
||||
}
|
||||
|
||||
if (WeaponSync == null) return;
|
||||
|
||||
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await WeaponSync.SyncGloveToDatabase(playerInfo, weaponDefindex);
|
||||
|
||||
if (!GPlayerWeaponsInfo[playerInfo.Slot].TryGetValue(weaponDefindex, out var value))
|
||||
// Sync glove to database for all teams
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
value = new WeaponInfo();
|
||||
GPlayerWeaponsInfo[playerInfo.Slot][weaponDefindex] = value;
|
||||
await WeaponSync.SyncGloveToDatabase(playerInfo, (ushort)weaponDefindex, teamsToCheck);
|
||||
|
||||
// Check if the weapon info exists for the glove
|
||||
if (!GPlayerWeaponsInfo[playerInfo.Slot][team].TryGetValue(weaponDefindex, out var value))
|
||||
{
|
||||
value = new WeaponInfo();
|
||||
GPlayerWeaponsInfo[playerInfo.Slot][team][weaponDefindex] = value;
|
||||
}
|
||||
|
||||
// Update weapon info
|
||||
value.Paint = paint;
|
||||
value.Wear = 0.00f;
|
||||
value.Seed = 0;
|
||||
|
||||
// Sync weapon paints to database
|
||||
await WeaponSync.SyncWeaponPaintsToDatabase(playerInfo);
|
||||
}
|
||||
|
||||
value.Paint = paint;
|
||||
value.Wear = 0.00f;
|
||||
value.Seed = 0;
|
||||
|
||||
await WeaponSync.SyncWeaponPaintsToDatabase(playerInfo);
|
||||
});
|
||||
|
||||
AddTimer(0.1f, () => GivePlayerGloves(player));
|
||||
@@ -547,7 +625,7 @@ public partial class WeaponPaints
|
||||
if (!CommandsCooldown.TryGetValue(player.Slot, out DateTime cooldownEndTime) ||
|
||||
DateTime.UtcNow >= (CommandsCooldown.TryGetValue(player.Slot, out cooldownEndTime) ? cooldownEndTime : DateTime.UtcNow))
|
||||
{
|
||||
var agentsSelectionMenu = MenuApi?.NewMenu(Localizer["wp_agent_menu_title"]);
|
||||
var agentsSelectionMenu = Utility.CreateMenu(Localizer["wp_agent_menu_title"]);
|
||||
if (agentsSelectionMenu == null) return;
|
||||
agentsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||
|
||||
@@ -587,7 +665,7 @@ public partial class WeaponPaints
|
||||
|
||||
private void SetupMusicMenu()
|
||||
{
|
||||
var musicSelectionMenu = MenuApi?.NewMenu(Localizer["wp_music_menu_title"]);
|
||||
var musicSelectionMenu = Utility.CreateMenu(Localizer["wp_music_menu_title"]);
|
||||
if (musicSelectionMenu == null) return;
|
||||
musicSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||
|
||||
@@ -596,6 +674,11 @@ public partial class WeaponPaints
|
||||
if (!Utility.IsPlayerValid(player) || player is null) return;
|
||||
|
||||
var selectedPaintName = option.Text;
|
||||
|
||||
var playerMusic = GPlayersMusic.GetOrAdd(player.Slot, new ConcurrentDictionary<CsTeam, ushort>());
|
||||
var teamsToCheck = player.TeamNum < 2
|
||||
? new[] { CsTeam.Terrorist, CsTeam.CounterTerrorist }
|
||||
: [player.Team]; // Corrected array initializer
|
||||
|
||||
var selectedMusic = MusicList.FirstOrDefault(g => g.ContainsKey("name") && g["name"]?.ToString() == selectedPaintName);
|
||||
if (selectedMusic != null)
|
||||
@@ -607,7 +690,7 @@ public partial class WeaponPaints
|
||||
if (Config.Additional.ShowSkinImage)
|
||||
{
|
||||
_playerWeaponImage[player.Slot] = image;
|
||||
AddTimer(2.0f, () => _playerWeaponImage.Remove(player.Slot), CounterStrikeSharp.API.Modules.Timers.TimerFlags.STOP_ON_MAPCHANGE);
|
||||
AddTimer(2.0f, () => _playerWeaponImage.Remove(player.Slot), TimerFlags.STOP_ON_MAPCHANGE);
|
||||
}
|
||||
|
||||
PlayerInfo playerInfo = new PlayerInfo
|
||||
@@ -619,15 +702,23 @@ public partial class WeaponPaints
|
||||
Name = player.PlayerName,
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
|
||||
if (paint != 0)
|
||||
{
|
||||
GPlayersMusic[player.Slot] = (ushort)paint;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerMusic[team] = (ushort)paint;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GPlayersMusic[player.Slot] = 0;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerMusic[team] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
GivePlayerMusicKit(player);
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_music_menu_select"]))
|
||||
{
|
||||
@@ -638,11 +729,9 @@ public partial class WeaponPaints
|
||||
{
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await WeaponSync.SyncMusicToDatabase(playerInfo, (ushort)paint);
|
||||
await WeaponSync.SyncMusicToDatabase(playerInfo, (ushort)paint, teamsToCheck);
|
||||
});
|
||||
}
|
||||
|
||||
//RefreshGloves(player);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -656,7 +745,12 @@ public partial class WeaponPaints
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
GPlayersMusic[player.Slot] = 0;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerMusic[team] = 0;
|
||||
}
|
||||
|
||||
GivePlayerMusicKit(player);
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_music_menu_select"]))
|
||||
{
|
||||
@@ -667,7 +761,7 @@ public partial class WeaponPaints
|
||||
{
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await WeaponSync.SyncMusicToDatabase(playerInfo, 0);
|
||||
await WeaponSync.SyncMusicToDatabase(playerInfo, 0, teamsToCheck);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -706,7 +800,7 @@ public partial class WeaponPaints
|
||||
|
||||
private void SetupPinsMenu()
|
||||
{
|
||||
var pinsSelectionMenu = MenuApi?.NewMenu(Localizer["wp_pins_menu_title"]);
|
||||
var pinsSelectionMenu = Utility.CreateMenu(Localizer["wp_pins_menu_title"]);
|
||||
if (pinsSelectionMenu == null) return;
|
||||
pinsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||
|
||||
@@ -716,6 +810,11 @@ public partial class WeaponPaints
|
||||
|
||||
var selectedPaintName = option.Text;
|
||||
|
||||
var playerPins = GPlayersPin.GetOrAdd(player.Slot, new ConcurrentDictionary<CsTeam, ushort>());
|
||||
var teamsToCheck = player.TeamNum < 2
|
||||
? new[] { CsTeam.Terrorist, CsTeam.CounterTerrorist }
|
||||
: [player.Team];
|
||||
|
||||
var selectedPin = PinsList.FirstOrDefault(g => g.ContainsKey("name") && g["name"]?.ToString() == selectedPaintName);
|
||||
if (selectedPin != null)
|
||||
{
|
||||
@@ -738,14 +837,20 @@ public partial class WeaponPaints
|
||||
Name = player.PlayerName,
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
|
||||
if (paint != 0)
|
||||
{
|
||||
GPlayersPin[player.Slot] = (ushort)paint;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerPins[team] = (ushort)paint; // Set pin for each team
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GPlayersPin[player.Slot] = 0;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerPins[team] = 0; // Set pin for each team
|
||||
}
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_pins_menu_select"]))
|
||||
@@ -759,7 +864,7 @@ public partial class WeaponPaints
|
||||
{
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await WeaponSync.SyncPinToDatabase(playerInfo, (ushort)paint);
|
||||
await WeaponSync.SyncPinToDatabase(playerInfo, (ushort)paint, teamsToCheck);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -775,7 +880,10 @@ public partial class WeaponPaints
|
||||
IpAddress = player.IpAddress?.Split(":")[0]
|
||||
};
|
||||
|
||||
GPlayersPin[player.Slot] = 0;
|
||||
foreach (var team in teamsToCheck)
|
||||
{
|
||||
playerPins[team] = 0; // Set music for each team
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(Localizer["wp_pins_menu_select"]))
|
||||
{
|
||||
@@ -788,7 +896,7 @@ public partial class WeaponPaints
|
||||
{
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await WeaponSync.SyncPinToDatabase(playerInfo, 0);
|
||||
await WeaponSync.SyncPinToDatabase(playerInfo, 0, teamsToCheck);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
10
Config.cs
10
Config.cs
@@ -43,6 +43,9 @@ namespace WeaponPaints
|
||||
|
||||
[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"];
|
||||
@@ -68,7 +71,7 @@ namespace WeaponPaints
|
||||
|
||||
public class WeaponPaintsConfig : BasePluginConfig
|
||||
{
|
||||
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 9;
|
||||
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 10;
|
||||
|
||||
[JsonPropertyName("SkinsLanguage")]
|
||||
public string SkinsLanguage { get; set; } = "en";
|
||||
@@ -89,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);
|
||||
}
|
||||
}
|
||||
}
|
||||
142
Utility.cs
142
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)
|
||||
@@ -182,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)
|
||||
|
||||
18
Variables.cs
18
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,12 +73,13 @@ 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 = [];
|
||||
@@ -91,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"));
|
||||
|
||||
@@ -164,4 +166,6 @@ public partial class WeaponPaints
|
||||
|
||||
internal static IMenuApi? MenuApi;
|
||||
private static readonly PluginCapability<IMenuApi> MenuCapability = new("menu:nfcore");
|
||||
|
||||
private int _fadeSeed;
|
||||
}
|
||||
151
WeaponAction.cs
151
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,12 @@ 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) ||
|
||||
isKnife && 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 +36,23 @@ 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[player.Slot][player.Team].ContainsKey(weaponDefIndex))
|
||||
{
|
||||
// Random skins
|
||||
weapon.FallbackPaintKit = GetRandomPaint(weaponDefIndex);
|
||||
@@ -67,27 +74,51 @@ 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;
|
||||
|
||||
if (weaponInfo is { Paint: 38, Seed: 0 })
|
||||
{
|
||||
weapon.FallbackSeed = _fadeSeed++;
|
||||
}
|
||||
else
|
||||
{
|
||||
weapon.FallbackSeed = 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 +131,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 +150,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 +175,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,15 +183,18 @@ 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);
|
||||
// CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
// $"sticker slot {stickerSlot} schema", stickerSlot);
|
||||
// if (stickerSlot == 5)
|
||||
// {
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} offset x", sticker.OffsetX);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} offset y", sticker.OffsetY);
|
||||
// }
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
$"sticker slot {stickerSlot} wear", sticker.Wear);
|
||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||
@@ -161,7 +202,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,7 +217,7 @@ namespace WeaponPaints
|
||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||
|
||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeaponsInfo) ||
|
||||
!playerWeaponsInfo.TryGetValue(weaponDefIndex, out var value) ||
|
||||
!playerWeaponsInfo[player.Team].TryGetValue(weaponDefIndex, out var value) ||
|
||||
value.KeyChain == null) return;
|
||||
var keyChain = value.KeyChain;
|
||||
|
||||
@@ -200,6 +241,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 +284,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 +293,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 +332,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 +344,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 +405,12 @@ 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) return;
|
||||
|
||||
WeaponInfo weaponInfo = GPlayerWeaponsInfo[player.Slot][gloveInfo];
|
||||
WeaponInfo weaponInfo = GPlayerWeaponsInfo[player.Slot][player.Team][gloveId];
|
||||
|
||||
item.ItemDefinitionIndex = gloveInfo;
|
||||
item.ItemDefinitionIndex = gloveId;
|
||||
item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
||||
item.ItemIDHigh = 16384;
|
||||
|
||||
@@ -421,6 +472,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,21 +503,29 @@ 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;
|
||||
|
||||
player.InventoryServices.Rank[5] = pin > 0 ? (MedalRank_t)pin : MedalRank_t.MEDAL_RANK_NONE;
|
||||
player.InventoryServices.Rank[5] = pinId > 0 ? (MedalRank_t)pinId : MedalRank_t.MEDAL_RANK_NONE;
|
||||
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||
}
|
||||
|
||||
@@ -476,21 +536,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.8a";
|
||||
public override string ModuleVersion => "3.1a";
|
||||
|
||||
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,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -24,5 +24,7 @@
|
||||
"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"
|
||||
}
|
||||
@@ -23,6 +23,8 @@
|
||||
"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"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"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"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"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"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"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"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"wp_skin_menu_skin_title": "Выберите скин для {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего скина",
|
||||
|
||||
"wp_stattrak_action": "Вы успешно изменили настройки статтрак",
|
||||
|
||||
"None": "Нет"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"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"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"wp_skin_menu_skin_title": "Виберіть шкіру для {lime}{0}{default}",
|
||||
"wp_skin_menu_select": "Ви обрали {lime}{0}{default} як свою шкіру",
|
||||
|
||||
"wp_stattrak_action": "Ви успішно змінили налаштування статтрака",
|
||||
|
||||
"None": "Немає"
|
||||
}
|
||||
@@ -24,5 +24,7 @@
|
||||
"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": "★ Перчатки «Гидра» | Поверхностная закалка"
|
||||
}
|
||||
]
|
||||
@@ -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-handskar | Jade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10086",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10086.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Yellow-banded"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10087",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10087.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Needle Point"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 4725,
|
||||
"paint": "10088",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_brokenfang_gloves-10088.png",
|
||||
"paint_name": "★ Broken Fang-handskar | Unhinged"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10006",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10006.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Charred"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10007",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10007.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Snakebite"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10008",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10008.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Bronzed"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5027,
|
||||
"paint": "10039",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_bloodhound_gloves-10039.png",
|
||||
"paint_name": "★ Bloodhound-handskar | Guerrilla"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10018",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10018.png",
|
||||
"paint_name": "★ Sporthandskar | Superconductor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10019",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10019.png",
|
||||
"paint_name": "★ Sporthandskar | Arid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10037",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10037.png",
|
||||
"paint_name": "★ Sporthandskar | Pandora's Box"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10038",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10038.png",
|
||||
"paint_name": "★ Sporthandskar | Hedge Maze"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10045",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10045.png",
|
||||
"paint_name": "★ Sporthandskar | Amphibious"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10046",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10046.png",
|
||||
"paint_name": "★ Sporthandskar | Bronze Morph"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10047",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10047.png",
|
||||
"paint_name": "★ Sporthandskar | Omega"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10048",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10048.png",
|
||||
"paint_name": "★ Sporthandskar | Vice"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10073",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10073.png",
|
||||
"paint_name": "★ Sporthandskar | Slingshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10074",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10074.png",
|
||||
"paint_name": "★ Sporthandskar | Big Game"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10075",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10075.png",
|
||||
"paint_name": "★ Sporthandskar | Scarlet Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5030,
|
||||
"paint": "10076",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/sporty_gloves-10076.png",
|
||||
"paint_name": "★ Sporthandskar | Nocts"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10013",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10013.png",
|
||||
"paint_name": "★ Förarhandskar | Lunar Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10015",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10015.png",
|
||||
"paint_name": "★ Förarhandskar | Convoy"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10016",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10016.png",
|
||||
"paint_name": "★ Förarhandskar | Crimson Weave"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10040",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10040.png",
|
||||
"paint_name": "★ Förarhandskar | Diamondback"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10041",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10041.png",
|
||||
"paint_name": "★ Förarhandskar | King Snake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10042",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10042.png",
|
||||
"paint_name": "★ Förarhandskar | Imperial Plaid"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10043",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10043.png",
|
||||
"paint_name": "★ Förarhandskar | Overtake"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10044",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10044.png",
|
||||
"paint_name": "★ Förarhandskar | Racing Green"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10069",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10069.png",
|
||||
"paint_name": "★ Förarhandskar | Rezan the Red"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10070",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10070.png",
|
||||
"paint_name": "★ Förarhandskar | Snow Leopard"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10071",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10071.png",
|
||||
"paint_name": "★ Förarhandskar | Queen Jaguar"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5031,
|
||||
"paint": "10072",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/slick_gloves-10072.png",
|
||||
"paint_name": "★ Förarhandskar | Black Tie"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10009",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10009.png",
|
||||
"paint_name": "★ Handlindor | Leather"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10010",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10010.png",
|
||||
"paint_name": "★ Handlindor | 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": "★ Handlindor | Slaughter"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10036",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10036.png",
|
||||
"paint_name": "★ Handlindor | Badlands"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10053",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10053.png",
|
||||
"paint_name": "★ Handlindor | 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": "★ Handlindor | Overprint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10055",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10055.png",
|
||||
"paint_name": "★ Handlindor | Duct Tape"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10056",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10056.png",
|
||||
"paint_name": "★ Handlindor | Arboreal"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10081",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10081.png",
|
||||
"paint_name": "★ Handlindor | Desert Shamagh"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10082",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10082.png",
|
||||
"paint_name": "★ Handlindor | Giraffe"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10083",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10083.png",
|
||||
"paint_name": "★ Handlindor | Constrictor"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5032,
|
||||
"paint": "10084",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/leather_handwraps-10084.png",
|
||||
"paint_name": "★ Handlindor | CAUTION!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10024",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10024.png",
|
||||
"paint_name": "★ Moto-handskar | Eclipse"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10026",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10026.png",
|
||||
"paint_name": "★ Moto-handskar | 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-handskar | 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-handskar | Cool Mint"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10049",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10049.png",
|
||||
"paint_name": "★ Moto-handskar | POW!"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10050",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10050.png",
|
||||
"paint_name": "★ Moto-handskar | Turtle"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10051",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10051.png",
|
||||
"paint_name": "★ Moto-handskar | Transport"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5033,
|
||||
"paint": "10052",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/motorcycle_gloves-10052.png",
|
||||
"paint_name": "★ Moto-handskar | 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-handskar | 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-handskar | 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-handskar | 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-handskar | 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": "★ Specialisthandskar | Forest DDPAT"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10033",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10033.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Kimono"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10034",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10034.png",
|
||||
"paint_name": "★ Specialisthandskar | Emerald Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10035",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10035.png",
|
||||
"paint_name": "★ Specialisthandskar | Foundation"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10061",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10061.png",
|
||||
"paint_name": "★ Specialisthandskar | Crimson Web"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10062",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10062.png",
|
||||
"paint_name": "★ Specialisthandskar | Buckshot"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10063",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10063.png",
|
||||
"paint_name": "★ Specialisthandskar | Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10064",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10064.png",
|
||||
"paint_name": "★ Specialisthandskar | Mogul"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10065",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10065.png",
|
||||
"paint_name": "★ Specialisthandskar | Marble Fade"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5034,
|
||||
"paint": "10066",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/specialist_gloves-10066.png",
|
||||
"paint_name": "★ Specialisthandskar | 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": "★ Specialisthandskar | 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": "★ Specialisthandskar | 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": "★ Hydrahandskar | 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": "★ Hydrahandskar | 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": "★ Hydrahandskar | Rattler"
|
||||
},
|
||||
{
|
||||
"weapon_defindex": 5035,
|
||||
"paint": "10060",
|
||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/studded_hydra_gloves-10060.png",
|
||||
"paint_name": "★ Hydrahandskar | Case Hardened"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user